/* Spick and Span Chester, stylesheet
   Heritage green, warm brass, stone. Merriweather + Inter. */

:root {
  --green: #1B4332;
  --green-deep: #143226;
  --brass: #A67C52;
  --brass-dark: #8E6843;
  --brass-text: #6E4D2B;
  --stone: #F7F3EA;
  --stone-2: #EDE8DE;
  --stone-3: #E4DDCE;
  --card: #FCFAF3;
  --ink: #1C2521;
  --muted: #4A4A4A;
  --cream: #F7F3EA;
  --line: rgba(27, 67, 50, 0.16);

  --serif: "Merriweather", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* anchored sections clear the sticky nav */
section[id], [id="work-with-us"] { scroll-margin-top: 92px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--stone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* Subtle paper grain across the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: inherit; }

/* Accessibility */
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: var(--brass);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 5px 0;
  transform: translateY(-120%);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); outline: none; }
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav :focus-visible { outline-color: #E0C9A6; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

section {
  padding-block: clamp(68px, 9vw, 124px);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-text);
  margin: 0 0 1.1rem;
}

.section-head { max-width: 720px; }

.section-head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--green);
}

.section-head p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.85em 1.5em;
  border-radius: 5px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn-brass {
  background: var(--brass);
  color: var(--cream);
}
.btn-brass:hover { background: var(--brass-dark); }
.nav-actions .btn { white-space: nowrap; }
.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--green); }
.btn-lg { padding: 1.05em 1.9em; font-size: 1rem; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  color: var(--cream);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 78px;
  padding-block: 0.75rem;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--cream);
  margin-right: auto;
}
.brand .mark {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand .since {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.62);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: rgba(247, 243, 234, 0.85);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding-block: 0.4rem;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-links a:hover { color: var(--cream); border-color: var(--brass); }

.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 0.05rem;
}
.nav-phone span { color: rgba(247,243,234,0.6); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  padding: 0.4rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--green-deep);
  border-top: 1px solid rgba(247,243,234,0.12);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0.6rem var(--gutter) 1.2rem; }
.mobile-menu a {
  display: block;
  color: rgba(247,243,234,0.9);
  text-decoration: none;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(247,243,234,0.08);
}
.mobile-menu .btn { margin-top: 1rem; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(105deg, #122e22 0%, #1B4332 58%, #1f4d39 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20,50,38,0.93) 0%, rgba(20,50,38,0.78) 46%, rgba(20,50,38,0.5) 100%);
}
.hero-clock {
  display: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-block: clamp(30px, 4vw, 52px);
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.hero-left {
  display: flex;
  flex-direction: column;
}
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 340px;
}
/* soft champagne glow seats the clock in the panel */
.hero-right::before {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background: radial-gradient(ellipse 50% 55% at 50% 58%, rgba(216,195,165,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-clock-panel {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 112%;
  width: auto;
  max-width: none;
  opacity: 0.34;
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
  filter: brightness(1.2) contrast(0.85);
}
.hero-clock-caption {
  position: absolute;
  top: 6%;
  right: -6px;
  writing-mode: vertical-rl;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(216,195,165,0.48);
  margin: 0;
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  /* keep the clock motif as a faint backdrop on small screens */
  .hero-clock {
    display: block;
    position: absolute;
    top: -20px;
    right: -24%;
    height: calc(100% + 40px);
    width: auto;
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
    user-select: none;
  }
}
@media (max-width: 560px) {
  .brand .since { display: none; }
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,243,234,0.7);
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.hero-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
}
.hero h1 {
  font-size: clamp(2.2rem, 4.7vw, 3.05rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 18ch;
  font-weight: 700;
}
.hero h1 em { font-style: italic; color: #D8C3A5; }
.hero-sub {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(247,243,234,0.86);
  max-width: 46ch;
}
.hero-cta {
  margin-top: 1.7rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.hero-call {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid rgba(247,243,234,0.35);
  padding-bottom: 2px;
  transition: border-color .2s ease;
}
.hero-call:hover { border-color: var(--brass); }
.hero-call strong { font-weight: 600; }
.hero-proof {
  margin-top: 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid var(--brass);
  font-size: 0.96rem;
  line-height: 1.5;
  color: rgba(247,243,234,0.74);
  max-width: 42ch;
}

/* Emerald sheen sweep, behind the clock, whisper-soft */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60%;
  left: 0;
  z-index: 0;
  background: linear-gradient(105deg,
    transparent 0%, transparent 35%,
    rgba(16,185,129,0.035) 45%,
    rgba(52,211,153,0.085) 50%,
    rgba(16,185,129,0.035) 55%,
    transparent 65%, transparent 100%
  );
  transform: translateX(-100%) skewX(-12deg);
  animation: ptr-shimmer 12s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes ptr-shimmer {
  0%   { transform: translateX(-100%) skewX(-12deg); }
  39%  { transform: translateX(200%) skewX(-12deg); }
  100% { transform: translateX(200%) skewX(-12deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; display: none; }
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--green-deep);
  color: var(--cream);
  padding-block: 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 2.4rem;
  padding-block: 1.55rem;
}
.trust-item {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: rgba(247,243,234,0.82);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.trust-item b { color: var(--cream); font-weight: 600; }
.trust-item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brass);
}
.trust-item:first-child::before { display: none; }

/* ---------- Heritage / Story ---------- */
.story { background: var(--stone); }
.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.4rem, 6vw, 5rem);
  align-items: center;
}
.story-lead h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--green);
}
.story-body p { color: var(--ink); font-size: 1.0625rem; line-height: 1.72; max-width: 60ch; }
.story-body p + p { margin-top: 1.2rem; }

/* Heritage timeline */
.timeline {
  grid-column: 1 / -1;
  list-style: none;
  margin: 3.8rem 0 0;
  padding: 3.2rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  counter-reset: tl;
}
/* the connecting rail */
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: calc(3.2rem + 9px);
  height: 2px;
  background: linear-gradient(90deg, var(--brass) 0%, rgba(166,124,82,0.85) 70%, rgba(166,124,82,0.25) 100%);
}
.tl-item {
  position: relative;
  padding-right: 0.5rem;
}
.tl-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  border: 4px solid var(--stone);
  box-shadow: 0 0 0 1.5px var(--brass);
  margin-bottom: 1.5rem;
}
.tl-lead {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green);
  display: block;
}
.tl-lead .plus { color: var(--brass); font-size: 0.62em; vertical-align: super; }
.tl-desc {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
  max-width: 20ch;
}

/* hero h1 Chester italic gold breakout */
.hero h1 em.chester {
  font-style: italic;
  color: #D8C3A5;
}

/* Short labels: shown only on small screens in place of full descriptions */
.tl-short { display: none; }

/* Light variant — sits at the foot of the green hero */
.timeline-hero {
  margin-top: clamp(1.6rem, 2.6vw, 2.2rem);
  padding-top: clamp(1.3rem, 2vw, 1.8rem);
  border-top: none;
}
.timeline-hero::before {
  background: linear-gradient(90deg, #D8C3A5 0%, rgba(216,195,165,0.7) 70%, rgba(216,195,165,0.18) 100%);
}
.timeline-hero .tl-dot {
  background: #D8C3A5;
  border-color: var(--green-deep);
  box-shadow: 0 0 0 1.5px rgba(216,195,165,0.55);
}
.timeline-hero .tl-lead { color: var(--cream); }
.timeline-hero .tl-lead .plus { color: #D8C3A5; }
.timeline-hero .tl-desc { color: rgba(247,243,234,0.72); max-width: 26ch; }
.timeline-hero .tl-dot { margin-bottom: 1.05rem; }
@media (max-width: 760px) {
  .story-grid { grid-template-columns: 1fr; }
  .timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-top: 1.8rem;
    padding-top: 1.8rem;
  }
  .tl-dot { width: 12px; height: 12px; margin-bottom: 0.7rem; }
  .tl-lead { font-size: 1.3rem; }
  .tl-desc { display: none; }
  .tl-short {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.78rem;
    line-height: 1.3;
    color: rgba(247,243,234,0.72);
  }
  .timeline-hero::before {
    background: linear-gradient(180deg, #D8C3A5 0%, rgba(216,195,165,0.7) 70%, rgba(216,195,165,0.18) 100%);
  }
  .timeline-hero .tl-desc { max-width: none; }
}

/* ---------- Contrast section ---------- */
.contrast { background: var(--stone-3); }
.contrast-inner {
  max-width: 1020px;
}
.contrast-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.3rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.contrast-inner p {
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.72;
  max-width: 64ch;
}
.contrast-inner p + p { margin-top: 1.2rem; }
.contrast-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  margin-top: 2.2rem;
  align-items: stretch;
}
.contrast-col { padding: 1.7rem 1.8rem; border-radius: 6px; }
.contrast-col p + p { margin-top: 0; }
.contrast-label {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.contrast-them {
  border-left: 3px solid rgba(28,37,33,0.18);
  background: transparent;
  border-radius: 0;
}
.contrast-them .contrast-label { color: var(--muted); }
.contrast-them p:not(.contrast-label) { color: var(--muted); }
.contrast-us {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  box-shadow: 0 14px 30px -22px rgba(20,50,38,0.35);
}
.contrast-us .contrast-label { color: var(--brass-text); }
.contrast-us p:not(.contrast-label) { color: var(--ink); }
@media (max-width: 760px) {
  .contrast-cols { grid-template-columns: 1fr; gap: 1.1rem; }
}

/* ---------- Sectors ---------- */
.sector-grid {
  margin-top: 3.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.sector {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 5px;
  padding: 2.3rem 2.1rem;
}
.sector h3 {
  font-size: 1.26rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.sector p { color: var(--muted); font-size: 0.98rem; line-height: 1.62; }

/* Private residences — featured band */
.residential {
  margin-top: 1.6rem;
  background: var(--green);
  color: var(--cream);
  border-radius: 6px;
  border-left: 4px solid var(--brass);
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.2rem);
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.residential-text { flex: 1; }
.residential-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E0C9A6;
  margin: 0 0 0.7rem;
}
.residential h3 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.residential p { color: rgba(247,243,234,0.84); font-size: 1.0625rem; line-height: 1.65; max-width: 62ch; }
.residential .btn { flex-shrink: 0; }
@media (max-width: 760px) {
  .residential { flex-direction: column; align-items: flex-start; }
  .residential .btn { width: 100%; }
}

/* ---------- Why clients stay ---------- */
.why { background: var(--stone-2); }
.why-grid {
  margin-top: 3.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.9rem;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 6px;
  padding: 2.6rem 2.5rem 2.4rem;
  display: flex;
  gap: 1.7rem;
}
.why-num {
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.9;
}
.why-card h3 { font-size: 1.32rem; color: var(--green); margin-bottom: 0.6rem; }
.why-card p { color: var(--muted); font-size: 1rem; }

/* ---------- How we work ---------- */
.steps {
  margin-top: 3.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.step { position: relative; }
.step-num {
  font-family: var(--serif);
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 1.1rem;
  position: relative;
}
.step-num::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--brass);
  margin-top: 1rem;
}
.step h3 { font-size: 1.25rem; color: var(--green); margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 1rem; }

/* ---------- Team ---------- */
.team { background: var(--stone-2); }
.team .section-head h2 { color: var(--green); }
.team .section-head p { color: var(--muted); }
.team .eyebrow { color: var(--brass-text); }
.team-grid {
  margin-top: 3.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}
.member {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 6px;
  padding: 2.5rem 2.3rem;
}
.member image-slot, .member .monogram {
  width: 84px;
  height: 84px;
  margin-bottom: 1.4rem;
}
.monogram {
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  border: none;
}
.member h3 {
  font-size: 1.32rem;
  color: var(--green);
  font-weight: 700;
}
.member .role {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass-text);
  margin-top: 0.45rem;
  margin-bottom: 1rem;
}
.member p { color: var(--muted); font-size: 0.98rem; line-height: 1.65; }
.member.founders { grid-column: span 2; }
@media (min-width: 861px) {
  .member.founders { display: grid; grid-template-columns: auto 1fr; gap: 1.8rem; align-items: start; }
  .member.founders .monogram { margin-bottom: 0; }
}

/* ---------- Clients ---------- */
.clients-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.4rem;
}
.client {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.1rem;
}
.client small {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  margin-top: 0.25rem;
}
.clients-note {
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 68ch;
}

/* ---------- Client logo treadmill ---------- */
.logo-marquee {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-track {
  display: flex;
  align-items: stretch;
  gap: 1.1rem;
  width: max-content;
  animation: logoScroll 64s linear infinite;
  will-change: transform;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-chip {
  flex: 0 0 auto;
  width: 176px;
  height: 104px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  box-shadow: 0 6px 16px -14px rgba(20,50,38,0.4);
}
.logo-chip img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 620px) {
  .logo-chip { width: 146px; height: 88px; padding: 13px 18px; }
  .logo-track { gap: 0.8rem; animation-duration: 48s; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }
  .logo-track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .logo-chip.dup { display: none; }
}

.testimonial {
  margin-top: 3.5rem;
  background: var(--stone-2);
  border-left: 3px solid var(--brass);
  border-radius: 0 6px 6px 0;
  padding: 2.8rem 3rem;
  max-width: 860px;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  line-height: 1.45;
  color: var(--green);
  font-style: italic;
  font-weight: 500;
}
.testimonial cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.testimonial cite b { color: var(--ink); font-weight: 600; }

/* ---------- Contact ---------- */
.contact { background: var(--green); color: var(--cream); position: relative; overflow: hidden; }
.contact-clock {
  position: absolute;
  left: clamp(-180px, -3vw, -60px);
  top: 50%;
  transform: translateY(-50%);
  height: 128%;
  width: auto;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.4rem, 5vw, 4.5rem);
  align-items: start;
}
.contact .eyebrow { color: #D8C3A5; }
.contact h2 { color: var(--cream); font-size: clamp(1.9rem, 3.6vw, 2.4rem); line-height: 1.12; }
.contact-lead { color: rgba(247,243,234,0.82); margin-top: 1.2rem; max-width: 44ch; }

.form-card {
  background: var(--stone);
  border-radius: 8px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
}
.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.field input, .field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.8rem 0.9rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,67,50,0.12);
}
.form-card .btn { width: 100%; margin-top: 0.4rem; }
.form-note {
  margin-top: 1.1rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.form-success.show { display: block; }
.form-success .tick {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem;
  font-size: 1.5rem;
}
.form-success h3 { font-size: 1.4rem; color: var(--green); margin-bottom: 0.7rem; }
.form-success p { color: var(--muted); max-width: 36ch; margin: 0 auto; }

.contact-detail { margin-top: 2.4rem; }
.contact-detail .label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,243,234,0.55);
  margin-bottom: 0.4rem;
}
.contact-detail .value { font-size: 1.18rem; color: var(--cream); font-weight: 500; }
.contact-detail .value a { text-decoration: none; }
.contact-detail .value a:hover { color: #D8C3A5; }
.contact-detail + .contact-detail { padding-top: 1.6rem; border-top: 1px solid rgba(247,243,234,0.12); }

/* Featured contact (Karen) */
.contact-detail.featured {
  margin-top: 2rem;
  background: rgba(166, 124, 82, 0.14);
  border: 1px solid rgba(166, 124, 82, 0.4);
  border-left: 4px solid var(--brass);
  border-radius: 5px;
  padding: 1.5rem 1.6rem;
}
.contact-detail.featured .label { color: #E0C9A6; }
.contact-detail.featured .value { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; }
.contact-detail.featured + .contact-detail { border-top: none; }
.detail-note { margin-top: 0.55rem; font-size: 0.9rem; color: rgba(247,243,234,0.72); line-height: 1.5; }
.email-note { font-size: 1rem !important; color: rgba(247,243,234,0.82) !important; font-weight: 400 !important; }

/* ---------- Footer ---------- */
.footer {
  background: var(--green-deep);
  color: rgba(247,243,234,0.7);
  padding-block: 2.6rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}
.footer .brand .mark { font-size: 1.15rem; }
.footer .brand { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
.footer-slogan {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: #D8C3A5;
  letter-spacing: 0.01em;
}
.member-cleaners .monogram { font-size: 1.35rem; letter-spacing: -0.01em; }

/* ---------- Recruit (Work with us) ---------- */
/* One-line cue at the end of the team section */
.recruit-cue {
  margin-top: 2.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  font-size: 1.0125rem;
  color: var(--muted);
}
.recruit-cue a {
  color: var(--brass-text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(166,124,82,0.4);
  transition: border-color .2s ease, color .2s ease;
}
.recruit-cue a:hover { color: var(--green); border-bottom-color: var(--green); }

/* Recruitment band: light, compact coda, lighter than the green contact CTA */
.recruit-band {
  background: var(--stone-2);
  padding-block: clamp(42px, 5.5vw, 68px);
}
.recruit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.recruit-clock {
  position: absolute;
  left: clamp(-90px, -2vw, -30px);
  bottom: -28px;
  height: 78%;
  width: auto;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.recruit-intro, .recruit-form { position: relative; z-index: 1; }
.recruit-intro {
  display: flex;
  flex-direction: column;
}
.recruit-intro h3 {
  font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  color: var(--green);
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 1rem;
}
.recruit-lead { color: var(--muted); font-size: 1.0125rem; line-height: 1.68; max-width: 42ch; }
.recruit-points {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  max-width: 40ch;
}
.recruit-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.0125rem;
  line-height: 1.5;
  color: var(--muted);
}
.recruit-points b { color: var(--green); font-weight: 600; }
.rp-mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(27,67,50,0.08);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  margin-top: 1px;
}
.recruit-since {
  margin-top: auto;
  padding-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brass-text);
}
.recruit-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.6rem, 3vw, 2.2rem);
}
.recruit-form .field { margin-bottom: 1.1rem; }
.recruit-form .optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: 0.86em; }
.recruit-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.8rem 0.9rem;
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.recruit-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,67,50,0.12);
}
.field-checks { border: 0; margin: 0 0 1.1rem; padding: 0; }
.field-checks legend {
  padding: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
}
.check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.97rem;
  color: var(--ink);
  cursor: pointer;
}
.check input { width: 17px; height: 17px; accent-color: var(--green); flex-shrink: 0; cursor: pointer; }
.recruit-form .btn { width: 100%; margin-top: 0.3rem; }
.recruit-form .form-note { text-align: center; }
.recruit-form .form-note a { color: var(--brass-text); text-decoration: none; border-bottom: 1px solid var(--line); white-space: nowrap; }
.recruit-form .form-note a:hover { color: var(--green); }
@media (max-width: 760px) {
  .recruit {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding-top: 2.2rem;
  }
  .recruit-points { margin-top: 1.4rem; }
  .recruit-since { margin-top: 1.6rem; padding-top: 0; }
  .recruit-clock {
    height: auto;
    width: 78%;
    left: auto;
    right: -18%;
    bottom: auto;
    top: -6%;
    opacity: 0.06;
  }
  .check-grid { grid-template-columns: 1fr 1fr; }
}
.footer-credit {
  margin-top: 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.01em;
  color: rgba(247,243,234,0.26);
  text-align: right;
}
.footer-credit a { color: rgba(247,243,234,0.34); text-decoration: none; }
.footer-credit a:hover { color: rgba(247,243,234,0.7); }

/* ---------- Modals ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: rgba(10, 24, 18, 0.62);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .26s ease;
}
.modal[hidden] { display: none; }
.modal.open { opacity: 1; }
.modal-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: var(--card);
  border-radius: 8px;
  border-top: 4px solid var(--green);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: 0 30px 70px -25px rgba(10, 24, 18, 0.6);
  transform: translateY(14px) scale(0.985);
  transition: transform .26s cubic-bezier(.2,.7,.3,1);
}
.modal.open .modal-card { transform: none; }
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.modal-close:hover { background: var(--green); color: var(--cream); border-color: var(--green); }
.modal-eyebrow {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-text);
  margin: 0 0 0.5rem;
}
.modal-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
  margin: 0 2.5rem 1.4rem 0;
}
.modal-body p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.68;
}
.modal-body p + p { margin-top: 1rem; }
.modal-body a {
  color: var(--brass-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.modal-body a:hover { color: var(--green); }
@media (prefers-reduced-motion: reduce) {
  .modal, .modal-card { transition: none; }
}
.footer a { color: rgba(247,243,234,0.75); text-decoration: none; }
.footer a:hover { color: var(--cream); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ---------- Interactions ---------- */
.sector, .why-card, .member, .residential {
  transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s ease, border-color .28s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .sector:hover, .why-card:hover, .member:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px -20px rgba(20,50,38,0.45);
    border-left-color: var(--brass);
  }
  .residential:hover { box-shadow: 0 18px 40px -22px rgba(0,0,0,0.5); }
}
.client { transition: color .2s ease, border-color .2s ease; }
.client:hover { color: var(--brass-dark); border-bottom-color: var(--brass); }
.nav-links a.active { color: var(--cream); border-color: var(--brass); }
.nav { transition: box-shadow .25s ease, background-color .25s ease; }
.nav.scrolled { box-shadow: 0 6px 24px -8px rgba(10,30,22,0.45); }

/* ---------- Reveal animation ---------- */
/* Hidden state only applies when JS is present (html.js). Without JS — or if
   the animation clock stalls — content stays visible. The .in class is toggled
   by an IntersectionObserver (transition-based, not @keyframes). */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .sector-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .member.founders { grid-column: span 2; }
}
@media (max-width: 1180px) {
  .nav-phone { display: none; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn { display: none; }
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .sector-grid, .team-grid, .clients-list { grid-template-columns: 1fr; }
  .member.founders { grid-column: span 1; }
  .testimonial { padding: 2rem 1.6rem; }
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding-block: 0;
    background: rgba(247,243,234,0.13);
    border-top: 1px solid rgba(247,243,234,0.13);
    border-bottom: 1px solid rgba(247,243,234,0.13);
  }
  .trust-item {
    background: var(--green-deep);
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.15rem;
    padding: 1.15rem 0.7rem;
    min-height: 76px;
    font-size: 0.92rem;
    line-height: 1.3;
  }
  .trust-item::before { display: none; }
}
