/* ==========================================================================
   Partners in Grime — Design system
   Inspired by polished, hospitality-luxe cleaning brands.
   ========================================================================== */

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

:root {
  /* Colour */
  --bg:            #f7f3ec;          /* warm ivory */
  --bg-alt:        #efe9dd;          /* deeper sand */
  --surface:       #ffffff;
  --ink:           #1a1f1d;          /* near-black with green undertone */
  --ink-muted:     #5b6360;
  --line:          rgba(26,31,29,0.10);
  --forest:        #2c4a3e;          /* primary brand */
  --forest-deep:   #1d3329;
  --sage:          #5b7363;
  --sage-soft:     #c4d1c5;
  --honey:         #c4965a;          /* accent */
  --honey-deep:    #a87a3f;
  --cream:         #fbf8f2;

  /* Type */
  --serif:  'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
  --sans:   'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --max:    1240px;
  --pad-x:  clamp(20px, 4vw, 56px);

  /* Motion */
  --ease:   cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
p  { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--honey-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--honey);
}

/* ---------- Containers ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad-x); }
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-tight { padding: clamp(56px, 7vw, 88px) 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,243,236,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--forest);
}
.brand-mark {
  width: 38px; height: 38px; min-width: 38px; flex-shrink: 0;
  border-radius: 50%; aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--forest), var(--sage));
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 17px;
  letter-spacing: 0;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  position: relative; padding-block: 6px;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--forest); transform: scaleX(0);
  transform-origin: right; transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 500; font-size: 14.5px; letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--forest); color: var(--cream);
  box-shadow: 0 8px 24px -10px rgba(28,51,41,.55);
}
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--forest);
  border: 1px solid var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--cream); }
.btn-honey {
  background: var(--honey); color: var(--cream);
  box-shadow: 0 8px 24px -10px rgba(196,150,90,.55);
}
.btn-honey:hover { background: var(--honey-deep); transform: translateY(-1px); }
.btn-whats {
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px -10px rgba(37,211,102,.55);
}
.btn-whats:hover { background: #1ebe57; transform: translateY(-1px); color: #fff; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn .ico { width: 18px; height: 18px; flex-shrink: 0; }

.menu-toggle { display: none; font-size: 24px; padding: 6px 10px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(32px, 5vw, 72px) 0 clamp(80px, 10vw, 140px);
  background:
    radial-gradient(1200px 600px at 80% 0%, rgba(196,150,90,.18), transparent 60%),
    radial-gradient(900px 700px at 0% 90%, rgba(91,115,99,.18), transparent 65%),
    var(--bg);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero h1 .accent {
  font-style: italic; color: var(--forest); position: relative;
}
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 8px;
  background: rgba(196,150,90,.30); z-index: -1; border-radius: 4px;
}
.hero-lede { max-width: 520px; font-size: 18px; color: var(--ink-muted); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 56px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-meta .stat .num {
  font-family: var(--serif); font-size: 38px; color: var(--forest);
  display: block; line-height: 1;
}
.hero-meta .stat .lbl {
  font-size: 12.5px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-muted); margin-top: 6px; display: block;
}

.hero-photo-wrap { position: relative; }
.hero-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 16px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(28,51,41,0) 40%, rgba(28,51,41,.40)),
    url('hero.jpg') center/cover;
  box-shadow: 0 30px 80px -30px rgba(28,51,41,.45);
}
.hero-visual::after {
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px; pointer-events: none;
}
.hero-badge {
  position: absolute; left: -24px; bottom: 32px;
  background: var(--cream); padding: 18px 22px; border-radius: 12px;
  box-shadow: 0 20px 50px -20px rgba(28,51,41,.4);
  display: flex; align-items: center; gap: 14px;
  width: clamp(240px, 22vw, 300px);
  z-index: 2;
}
.hero-badge .stars { color: var(--honey); font-size: 14px; letter-spacing: 2px; }
.hero-badge p { margin: 0; font-size: 13.5px; color: var(--ink-muted); line-height: 1.45; }
.hero-badge strong { color: var(--ink); display: block; font-size: 14px; }

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  padding-block: 28px;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 64px;
  width: max-content;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.trust-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--ink-muted); flex-shrink: 0;
  white-space: nowrap;
}
.trust-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(91,115,99,.12); color: var(--forest);
  display: grid; place-items: center; flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: none; }
}

/* ---------- Section heading ---------- */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-muted); font-size: 18px; }

/* ---------- Services grid ---------- */
.services { background: var(--bg); }
.service-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-card {
  position: relative;
  background: var(--surface); border-radius: 16px; padding: 36px 32px 32px;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(91,115,99,.06));
  opacity: 0; transition: opacity .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(28,51,41,.25);
  border-color: rgba(91,115,99,.3);
}
.service-card:hover::before { opacity: 1; }
.service-card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--forest), var(--sage));
  color: var(--cream); display: grid; place-items: center;
  margin-bottom: 22px; font-size: 22px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-muted); font-size: 15px; margin-bottom: 18px; }
.service-card .more {
  font-size: 13px; font-weight: 600; color: var(--forest);
  letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.service-card .more .arrow { transition: transform .3s var(--ease); }
.service-card:hover .more .arrow { transform: translateX(4px); }

/* ---------- Split features ---------- */
.split { background: var(--bg-alt); }
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split-image {
  aspect-ratio: 5/6; border-radius: 16px; overflow: hidden; position: relative;
  background:
    linear-gradient(180deg, rgba(28,51,41,0) 50%, rgba(28,51,41,.35)),
    url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?w=900&q=80&auto=format&fit=crop') center/cover;
  box-shadow: 0 30px 80px -30px rgba(28,51,41,.45);
}
.split-image .frame {
  position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
}
.split-image.flipped {
  background:
    linear-gradient(180deg, rgba(28,51,41,0) 50%, rgba(28,51,41,.35)),
    url('https://images.unsplash.com/photo-1583947215259-38e31be8751f?w=900&q=80&auto=format&fit=crop') center/cover;
}
.feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.feature-list li {
  display: flex; gap: 16px; align-items: flex-start; font-size: 15.5px;
}
.feature-list li .tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--forest); color: var(--cream);
  display: grid; place-items: center; font-size: 12px;
}
.feature-list li strong { display: block; margin-bottom: 2px; color: var(--ink); }
.feature-list li span { color: var(--ink-muted); font-size: 14.5px; }

/* ---------- Process / steps ---------- */
.process { background: var(--bg); }
.steps {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: step;
}
.step {
  position: relative; padding: 36px 28px;
  background: var(--cream); border-radius: 16px;
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--serif); font-size: 56px;
  color: rgba(44,74,62,.12);
  position: absolute; top: 14px; right: 20px;
  font-weight: 600;
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--ink-muted); font-size: 15px; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials {
  background:
    radial-gradient(1000px 600px at 100% 0%, rgba(196,150,90,.10), transparent 55%),
    var(--forest);
  color: var(--cream);
}
.testimonials .eyebrow { color: var(--honey); }
.testimonials .eyebrow::before { background: var(--honey); }
.testimonials h2 { color: var(--cream); }
.t-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 56px;
}
.t-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 36px 30px; backdrop-filter: blur(8px);
}
.t-card .stars { color: var(--honey); letter-spacing: 3px; margin-bottom: 14px; }
.t-card blockquote {
  margin: 0 0 22px; font-family: var(--serif); font-size: 22px; line-height: 1.4;
  color: var(--cream);
}
.t-card .who { display: flex; align-items: center; gap: 14px; }
.t-card .who .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--honey), var(--sage));
  display: grid; place-items: center; color: var(--cream);
  font-weight: 600; font-size: 16px;
}
.t-card .who .name { font-weight: 600; font-size: 15px; }
.t-card .who .meta { color: rgba(251,248,242,.6); font-size: 13px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--cream); border-radius: 24px;
  padding: clamp(40px, 5vw, 72px);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px;
  align-items: center; border: 1px solid var(--line);
  box-shadow: 0 30px 80px -50px rgba(28,51,41,.35);
  margin-block: clamp(60px, 8vw, 100px);
}
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { color: var(--ink-muted); margin: 0 0 24px; }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .side {
  background: var(--forest); color: var(--cream);
  border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.cta-banner .side .label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--honey); }
.cta-banner .side .num { font-family: var(--serif); font-size: 32px; }
.cta-banner .side .sub { font-size: 13.5px; color: rgba(251,248,242,.75); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep); color: var(--cream);
  padding-top: clamp(60px, 8vw, 96px);
}
.foot-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.foot-grid h4 {
  font-family: var(--sans); font-size: 13px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--honey); margin-bottom: 18px; font-weight: 600;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-grid a { color: rgba(251,248,242,.78); font-size: 14.5px; transition: color .25s; }
.foot-grid a:hover { color: var(--cream); }
.foot-grid p { color: rgba(251,248,242,.78); font-size: 14.5px; }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.foot-brand .brand-mark { background: linear-gradient(135deg, var(--honey), var(--sage)); }
.foot-brand .name { font-family: var(--serif); font-size: 24px; }
.foot-tag { color: rgba(251,248,242,.7); font-size: 14.5px; max-width: 320px; }
.foot-social { display: inline-flex; gap: 12px; margin-top: 18px; }
.foot-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(251,248,242,.10);
  display: grid; place-items: center;
  color: var(--cream); transition: background .25s, transform .25s, color .25s;
}
.foot-social a:hover { background: var(--honey); color: var(--forest-deep); transform: translateY(-2px); }
.foot-social svg { width: 18px; height: 18px; }
.info-item .ico svg { width: 22px; height: 22px; }
.foot-bottom {
  margin-top: clamp(48px, 6vw, 72px); padding-block: 24px;
  border-top: 1px solid rgba(251,248,242,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(251,248,242,.6);
}

/* ---------- Pages: simple banner ---------- */
.page-banner {
  padding: clamp(120px, 14vw, 180px) 0 clamp(60px, 8vw, 96px);
  background:
    radial-gradient(1000px 500px at 80% 0%, rgba(196,150,90,.18), transparent 60%),
    radial-gradient(800px 600px at 0% 100%, rgba(91,115,99,.18), transparent 60%),
    var(--bg);
  text-align: center;
}
.page-banner h1 { max-width: 18ch; margin-inline: auto; }
.page-banner p { max-width: 56ch; margin-inline: auto; color: var(--ink-muted); font-size: 18px; }
.crumbs {
  font-size: 12.5px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 16px;
}
.crumbs a { color: var(--ink-muted); }
.crumbs a:hover { color: var(--forest); }

/* ---------- Service detail rows ---------- */
.svc-row { padding-block: clamp(48px, 6vw, 80px); border-bottom: 1px solid var(--line); }
.svc-row:last-child { border-bottom: 0; }
.svc-row .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.svc-row.flip .grid > :first-child { order: 2; }
.svc-row .image {
  aspect-ratio: 4/3; border-radius: 14px; overflow: hidden;
  background-size: cover; background-position: center;
  box-shadow: 0 20px 60px -30px rgba(28,51,41,.35);
}
.svc-row .copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
.svc-row .copy p { color: var(--ink-muted); }
.bullets { list-style: none; padding: 0; margin: 18px 0 28px; display: grid; gap: 10px; }
.bullets li { padding-left: 26px; position: relative; font-size: 15.5px; color: var(--ink); }
.bullets li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--honey); font-weight: 700;
}

/* ---------- About / values ---------- */
.values {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 56px;
}
.value {
  padding: 32px 28px; background: var(--cream);
  border: 1px solid var(--line); border-radius: 16px;
}
.value h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--forest); }
.value p { color: var(--ink-muted); font-size: 15px; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.contact-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 16px; padding: 36px;
}
form .row { display: grid; gap: 16px; }
form .row.two { grid-template-columns: 1fr 1fr; }
form label { display: block; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 8px; font-weight: 600; }
form input, form textarea, form select {
  width: 100%; font: inherit; padding: 14px 16px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--cream); color: var(--ink);
  transition: border .25s, box-shadow .25s;
}
form input:focus, form textarea:focus, form select:focus {
  outline: none; border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(44,74,62,.12);
}
form textarea { resize: vertical; min-height: 140px; }
form .submit-row { margin-top: 20px; }

.info-block { display: grid; gap: 22px; }
.info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.info-item:last-child { border-bottom: 0; }
.info-item .ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(91,115,99,.12); color: var(--forest);
  display: grid; place-items: center; flex-shrink: 0;
}
.info-item h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink-muted); margin: 0 0 4px; font-weight: 600; }
.info-item p { margin: 0; font-size: 16px; }
.info-item p a { color: var(--forest); font-weight: 500; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .svc-row .grid { grid-template-columns: 1fr; }
  .svc-row.flip .grid > :first-child { order: 0; }
  .cta-banner { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo-wrap { max-width: 520px; }
  .hero-visual { aspect-ratio: 4/3; }
  .hero-badge { left: 16px; bottom: 20px; }
  .marquee-track { gap: 40px; animation-duration: 32s; }
  .trust-item { font-size: 14px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  form .row.two { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .marquee-track { gap: 32px; animation-duration: 26s; }
  .hero-badge { width: clamp(220px, 70vw, 280px); }
}
