/* ==========================================================================
   We Clean Summit — stylesheet
   One file, no build step. Edit values in :root to reskin the whole site.
   ========================================================================== */

:root {
  /* Palette — warm paper, deep alpine green, a little clay for accents */
  --paper:      #FCFAF6;
  --paper-warm: #F2EDE1;
  --paper-deep: #E8E0CF;
  --ink:        #121C19;
  --forest:     #1A342C;
  --forest-lt:  #2E4C42;
  --moss:       #4C6759;   /* small labels — dark enough to read at .75rem */
  --clay:       #8E4E2E;
  --stone:      #4C4941;   /* secondary body copy */
  --line:       #D3C7AF;
  --line-soft:  #E3DAC7;

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans:  "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Rhythm */
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --measure: 34rem;
  --section: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 3px;
}

/* --------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }

/* ---------------------------------------------------------------- type -- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  color: var(--forest);
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.9vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); line-height: 1.25; }
h4 { font-size: 1.05rem; line-height: 1.3; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.lede {
  font-size: clamp(1.1rem, 1.65vw, 1.3rem);
  line-height: 1.55;
  color: var(--forest-lt);
  max-width: 40rem;
}

.prose { max-width: var(--measure); }
.prose p + h3 { margin-top: 2.25rem; }
.prose h3 + p { margin-top: .6rem; }

.muted { color: var(--stone); }

/* Small caps-ish label used to number and title sections */
.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem .75rem;
}

.eyebrow[data-num]::before {
  content: attr(data-num);
  font-variant-numeric: tabular-nums;
  color: var(--clay);
}

/* -------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: 74rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: 58rem; }

section { padding-block: var(--section); }
section.tight { padding-block: clamp(3rem, 6vw, 5rem); }

.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* Two-column editorial split: heading left, content right */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

@media (max-width: 800px) {
  .split { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
}

.cols-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: clamp(1.75rem, 4vw, 3.25rem);
}

.cols-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14.5rem, 1fr));
  gap: clamp(1.75rem, 3.5vw, 3rem);
}

/* --------------------------------------------------------------- links -- */

.link {
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: border-color .18s ease, color .18s ease;
}
.link:hover { border-color: var(--clay); color: var(--clay); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
}
.arrow-link::after {
  content: "";
  width: 1.35rem;
  height: 1px;
  background: currentColor;
  transition: width .2s ease;
}
.arrow-link:hover { color: var(--clay); }
.arrow-link:hover::after { width: 2.1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--paper);
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { background: #16302A; border-color: #16302A; }

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

:where(a, button):focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: var(--paper);
  padding: .75rem 1.25rem;
  z-index: 100;
}
.skip:focus { left: 0; }

/* ----------------------------------------------------------------- nav -- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 246, .88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
  text-decoration: none;
  color: var(--forest);
  flex-shrink: 0;
}

.wordmark__row {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}

/* Ruled label above the name - the hairline runs out to the width of the lockup */
.wordmark__kicker {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--moss);
  line-height: 1;
}
.wordmark__kicker::after {
  content: "";
  flex: 1;
  min-width: 1.5rem;   /* the rule must stay visible even if the label runs long */
  height: 1px;
  background: var(--line);
}

.wordmark svg { width: 26px; height: 26px; flex: none; }

.wordmark__text {
  font-family: var(--serif);
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}
.wordmark__text b { font-weight: 500; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.1rem);
}

.nav a {
  text-decoration: none;
  color: var(--forest-lt);
  font-size: .93rem;
  letter-spacing: .01em;
  padding-block: .35rem;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--forest); }
.nav a[aria-current="page"] {
  color: var(--forest);
  border-bottom-color: var(--clay);
}

.nav__phone {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: var(--forest) !important;
}

@media (max-width: 860px) {
  .site-head__inner { flex-wrap: wrap; min-height: 0; padding-block: .9rem; }
  .nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: .35rem 1.1rem;
    padding-top: .55rem;
    border-top: 1px solid var(--line-soft);
    margin-top: .35rem;
  }
  .nav a { font-size: .88rem; }
  .nav__phone { margin-left: auto; }
}

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  padding-top: clamp(3.5rem, 8vw, 7rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--line);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.hero h1 { max-width: 14ch; }
.hero h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 40;
  color: var(--clay);
}

.hero__meta {
  border-left: 1px solid var(--line);
  padding-left: clamp(1.25rem, 2.5vw, 2rem);
}

@media (max-width: 880px) {
  .hero__meta { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 1.5rem; }
}

.hero__meta p { font-size: 1rem; color: var(--forest-lt); }

/* Ridge line drawn under the hero */
.ridge {
  display: block;
  width: 100%;
  height: auto;
  color: #B9A882;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

/* --------------------------------------------------------------- facts -- */

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts > div {
  padding: 1.75rem clamp(1rem, 2vw, 1.75rem);
  border-left: 1px solid var(--line);
}
.facts > div:first-child { border-left: 0; padding-left: 0; }

.facts dt {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: .5rem;
}

.facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
  color: var(--forest);
}

@media (max-width: 640px) {
  .facts > div { border-left: 0; border-top: 1px solid var(--line-soft); padding-inline: 0; }
  .facts > div:first-child { border-top: 0; padding-top: 1.5rem; }
}

/* ------------------------------------------------------------ services -- */

.svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.svc-list > li {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.svc-list .num {
  font-family: var(--sans);
  font-size: .78rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .1em;
  color: var(--clay);
  padding-top: .45rem;
}

.svc-list h3 { margin-bottom: .55rem; }
.svc-list p { color: var(--stone); max-width: 44rem; }

@media (max-width: 560px) {
  .svc-list > li { grid-template-columns: 1fr; gap: .5rem; }
  .svc-list .num { padding-top: 0; }
}

/* Checklist of what's included */
.checks {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  columns: 2;
  column-gap: 2.5rem;
  font-size: .96rem;
  color: var(--stone);
}
.checks li {
  break-inside: avoid;
  padding: .38rem 0 .38rem 1.15rem;
  position: relative;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: .45rem;
  height: 1px;
  background: var(--clay);
}
@media (max-width: 560px) { .checks { columns: 1; } }

/* ---------------------------------------------------------------- band -- */

.band {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band--deep {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--paper-warm);
}
.band--deep h2, .band--deep h3 { color: var(--paper); }
.band--deep .eyebrow { color: #B7CFC1; }
.band--deep .eyebrow::before { color: #E6A87F; }
.band--deep .lede { color: #E1EAE5; }
.band--deep p { color: #D6E1DB; }
.band--deep .btn {
  background: var(--paper);
  color: var(--forest);
  border-color: var(--paper);
}
.band--deep .btn:hover { background: #EDE7DA; border-color: #EDE7DA; }
.band--deep .btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(252, 250, 246, .35);
}
.band--deep .btn--ghost:hover { border-color: var(--paper); background: transparent; color: var(--paper); }
.band--deep .rule { border-color: rgba(252, 250, 246, .18); }
.band--deep .link { color: var(--paper); border-color: rgba(252,250,246,.35); }
.band--deep .link:hover { color: #E9C4AC; border-color: #E9C4AC; }

/* ---------------------------------------------------------------- quote -- */

.quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: var(--forest);
  margin: 0;
  max-width: 30ch;
  text-wrap: balance;
}
.quote + figcaption {
  margin-top: 1.5rem;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--moss);
}

/* --------------------------------------------------------------- areas -- */

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

@media (max-width: 860px) { .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .area-grid { grid-template-columns: 1fr; } }

.area-grid article {
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 2rem);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.area-grid article h3 { margin-bottom: .5rem; }
.area-grid article p { font-size: .96rem; color: var(--stone); margin-bottom: 0; }
.area-grid article .pin {
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: .75rem;
  display: block;
}

/* ------------------------------------------------------------- contact -- */

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  background: var(--paper);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-list li {
  padding-block: 1.1rem;
  border-top: 1px solid var(--line-soft);
}
.contact-list li:first-child { border-top: 0; padding-top: 0; }
.contact-list dt,
.contact-list .k {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: .3rem;
}
.contact-list .v {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color .18s ease, color .18s ease;
}
a.v:hover { color: var(--clay); border-color: var(--clay); }

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .96rem;
  font-variant-numeric: tabular-nums;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .55rem 0;
  border-bottom: 1px dotted var(--line);
  color: var(--stone);
}
.hours li:last-child { border-bottom: 0; }
.hours span:first-child { color: var(--forest); }

/* ---------------------------------------------------------------- faq --- */

.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding-block: 1.25rem;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.1rem;
  color: var(--clay);
  flex: none;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin-top: .9rem;
  color: var(--stone);
  max-width: 46rem;
  font-size: 1rem;
}

/* -------------------------------------------------------------- footer -- */

.site-foot {
  border-top: 1px solid var(--line);
  background: var(--paper-warm);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .93rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (max-width: 780px) {
  .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-grid > :first-child { grid-column: 1 / -1; }
}

.site-foot h4 {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
  margin-bottom: 1rem;
}

.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { padding-block: .3rem; }
.site-foot a { color: var(--forest-lt); text-decoration: none; }
.site-foot a:hover { color: var(--clay); }
.site-foot p { color: var(--stone); }

.colophon {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  font-size: .82rem;
  color: var(--stone);
}

/* Trailing cell of the area grid — holds the link to the full areas page */
.area-grid__more {
  display: flex;
  align-items: center;
  background: var(--paper-warm);
}

/* Long unbreakable strings (the email address) must not force the card wider
   than a 320px screen */
.contact-list .v { overflow-wrap: anywhere; }

/* Icon marker on the add-ons list, in place of the A-F letters.
   Monoline, one stroke weight, rounded caps - sized off the 3.5rem grid column. */
.svc-list .ico {
  display: block;
  width: 2.1rem;
  height: 2.1rem;
  color: var(--clay);
  margin-top: .15rem;
}
.svc-list .ico svg { width: 100%; height: 100%; display: block; }

@media (max-width: 560px) {
  .svc-list .ico { margin-bottom: .35rem; }
}
