/* ============================================================
   CS Cleaning Services By Charlotte — Leeds
   Design: "Fresh Editorial" — warm paper, deep pine, brass
   Fonts: Fraunces (display) + Instrument Sans (body)
   ============================================================ */

:root {
  --paper: #f7f2e9;
  --paper-2: #efe7d8;
  --pine: #12402f;
  --pine-deep: #0b2d21;
  --pine-soft: #1d5c43;
  --brass: #c08a2e;
  --brass-soft: #e3c98f;
  --sage: #dce7da;
  --ink: #18241d;
  --ink-soft: #4c5a51;
  --line: rgba(18, 64, 47, 0.16);
  --cream: #fbf8f2;
  --white: #ffffff;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 24px 60px -28px rgba(11, 45, 33, 0.35);
  --radius: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

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

a { color: var(--pine); text-decoration: none; }

::selection { background: var(--brass); color: var(--pine-deep); }

.container { width: min(1140px, 92%); margin: 0 auto; }

/* ---------- Type ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--pine-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1.5px;
  background: var(--brass);
}

.lead { font-size: 19px; color: var(--ink-soft); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-family: var(--sans);
}
.btn:hover { transform: translateY(-2px); }

.btn-pine { background: var(--pine); color: var(--cream); box-shadow: 0 14px 30px -14px rgba(18,64,47,0.55); }
.btn-pine:hover { background: var(--pine-deep); }

.btn-ghost { background: transparent; color: var(--pine); border-color: var(--pine); }
.btn-ghost:hover { background: var(--pine); color: var(--cream); }

.btn-brass { background: var(--brass); color: var(--pine-deep); box-shadow: 0 14px 30px -14px rgba(192,138,46,0.6); }
.btn-brass:hover { background: #d19a3c; }

.btn .arr { transition: transform 0.25s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Top bar (owner pitch) ---------- */

.topbar {
  background: var(--pine-deep);
  color: var(--cream);
  text-align: center;
  font-size: 14.5px;
  padding: 10px 18px;
}
.topbar a { color: var(--brass-soft); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.topbar a:hover { color: #fff; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 233, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--pine);
  display: grid;
  place-items: center;
  color: var(--brass-soft);
  flex: none;
}
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--pine-deep); line-height: 1.1; }
.brand-sub { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 550; color: var(--ink); position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 2px; background: var(--brass);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 92px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -140px;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,138,46,0.16), rgba(192,138,46,0) 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -260px; left: -160px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,92,67,0.14), rgba(29,92,67,0) 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(44px, 6.2vw, 76px);
  margin: 22px 0 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--pine-soft);
}

.hero .lead { max-width: 34em; }

.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

/* Hero visual — stat card composition */
.hero-visual { position: relative; }
.hero-card {
  background: var(--pine-deep);
  color: var(--cream);
  border-radius: 28px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 260px at 85% -10%, rgba(192,138,46,0.28), transparent 60%),
    radial-gradient(340px 260px at -10% 110%, rgba(93,163,126,0.22), transparent 60%);
  pointer-events: none;
}
.hero-card .spark { position: absolute; opacity: 0.85; }
.spark-1 { top: 26px; right: 30px; }
.spark-2 { bottom: 30px; left: 26px; opacity: 0.5; }

.stat-row { display: flex; gap: 22px; flex-wrap: wrap; position: relative; z-index: 2; }
.stat {
  flex: 1 1 120px;
  border-left: 2px solid rgba(227,201,143,0.4);
  padding-left: 14px;
}
.stat .num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--brass-soft);
  line-height: 1;
}
.stat .lbl { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251,248,242,0.72); margin-top: 6px; }

.hero-card .quote {
  margin-top: 30px;
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  border-top: 1px solid rgba(227,201,143,0.3);
  padding-top: 24px;
}
.hero-card .quote small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.6);
  margin-top: 10px;
}

.float-chip {
  position: absolute;
  bottom: -26px;
  left: -18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pine-deep);
}
.float-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: #3fae6d; box-shadow: 0 0 0 4px rgba(63,174,109,0.18); }

/* ---------- Marquee ---------- */

.marquee {
  background: var(--pine);
  color: var(--cream);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-size: 14.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.marquee-track span { margin: 0 26px; color: var(--brass-soft); }
.marquee-track .sep { color: var(--brass); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */

section { padding: 96px 0; position: relative; }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 50px); margin: 16px 0 14px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- About ---------- */

.about { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 460px; object-fit: cover; object-position: center; }
.about-photo .cap {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(11,45,33,0.85);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.about p + p { margin-top: 16px; }
.about .tick-list { margin-top: 26px; display: grid; gap: 12px; }
.about .tick { display: flex; gap: 12px; align-items: flex-start; font-weight: 550; }
.about .tick svg { flex: none; margin-top: 3px; }

/* ---------- Services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--pine-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(18,64,47,0.3); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--sage);
  display: grid;
  place-items: center;
  color: var(--pine);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 21px; margin-bottom: 8px; }
.service-card p { font-size: 15px; color: var(--ink-soft); }

.service-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid var(--brass-soft);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 14px;
  font-weight: 600;
}

/* ---------- Testimonials ---------- */

.testimonials { background: var(--paper-2); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review-stars { color: var(--brass); letter-spacing: 3px; font-size: 15px; }
.review-text { font-family: var(--serif); font-size: 18.5px; font-style: italic; line-height: 1.5; color: var(--ink); flex: 1; }
.review-meta { font-size: 13.5px; color: var(--ink-soft); }
.review-meta strong { color: var(--pine-deep); font-weight: 600; }

.rating-summary {
  margin-top: 44px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 30px;
  background: var(--pine-deep);
  border-radius: var(--radius);
  color: var(--cream);
}
.rating-summary .rs-item { text-align: center; }
.rating-summary .rs-num { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--brass-soft); }
.rating-summary .rs-lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251,248,242,0.66); margin-top: 4px; }

/* ---------- Areas / process ---------- */

.process-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 20px;
}
.process-item .step { font-family: var(--serif); font-size: 15px; color: var(--brass); font-weight: 600; }
.process-item h4 { font-family: var(--serif); font-size: 19px; color: var(--pine-deep); margin: 8px 0 6px; }
.process-item p { font-size: 14px; color: var(--ink-soft); }

/* ---------- FAQ (index teaser) ---------- */

.faq-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.faq-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { font-family: var(--sans); font-size: 17px; font-weight: 650; color: var(--pine-deep); margin-bottom: 6px; }
.faq-item p { font-size: 15px; color: var(--ink-soft); }

/* ---------- Contact ---------- */

.contact { background: var(--pine-deep); color: var(--cream); overflow: hidden; }
.contact::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,138,46,0.22), transparent 65%);
}
.contact h2 { color: var(--cream); }
.contact .lead { color: rgba(251,248,242,0.75); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-lines { margin-top: 30px; display: grid; gap: 18px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; }
.contact-line .ic {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 14px;
  background: rgba(227,201,143,0.14);
  border: 1px solid rgba(227,201,143,0.3);
  display: grid;
  place-items: center;
  color: var(--brass-soft);
}
.contact-line .lbl { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251,248,242,0.55); }
.contact-line .val { font-size: 18px; font-weight: 600; color: var(--cream); }
.contact-line .val a { color: var(--cream); }
.contact-line .val a:hover { color: var(--brass-soft); }

.contact-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: var(--shadow);
}
.contact-card h3 { font-size: 24px; margin-bottom: 8px; color: var(--pine-deep); }
.contact-card p { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; }
.hours-list { display: grid; gap: 8px; font-size: 14.5px; }
.hours-list div { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: 8px; }
.hours-list span:last-child { font-weight: 600; color: var(--pine-deep); }

/* ---------- Owner pitch CTA ---------- */

.pitch-cta {
  background: linear-gradient(135deg, var(--brass), #d9a954);
  color: var(--pine-deep);
  padding: 64px 0;
  text-align: center;
}
.pitch-cta h2 { color: var(--pine-deep); font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 10px; }
.pitch-cta p { max-width: 44em; margin: 0 auto 26px; font-size: 16.5px; font-weight: 500; }

/* ---------- Footer ---------- */

.footer {
  background: var(--pine-deep);
  color: rgba(251,248,242,0.7);
  padding: 40px 0;
  font-size: 13.5px;
}
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer a { color: var(--brass-soft); }

/* ---------- FAQ page ---------- */

.page-hero { padding: 84px 0 60px; }
.page-hero h1 { font-size: clamp(38px, 5vw, 58px); margin: 18px 0 14px; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 30px;
  margin-bottom: 16px;
}
.faq-block h2 { font-family: var(--sans); font-size: 19px; font-weight: 650; color: var(--pine-deep); margin-bottom: 10px; }
.faq-block p { font-size: 16px; color: var(--ink-soft); }
.faq-block p + p { margin-top: 12px; }

/* ---------- Reveal (hybrid, never hides content) ---------- */

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }
.js .reveal[data-delay="4"] { transition-delay: 0.32s; }
.js .reveal[data-delay="5"] { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .process-strip { grid-template-columns: 1fr 1fr; }
  .faq-teaser { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding: 64px 0 84px; }
  section { padding: 72px 0; }
}

@media (max-width: 620px) {
  .services-grid, .reviews-grid, .process-strip { grid-template-columns: 1fr; }
  .float-chip { left: 8px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
