/* =============================================================
   Bonfiglio Lawn & Landscape — site.css
   Single shared stylesheet. Mobile-first. No build step.
   Designed by Hollingsworth Design · 2026
   ============================================================= */

/* ----- design tokens ----- */
:root {
  --limestone:     #F4F1EA;
  --limestone-dk:  #ECE7DA;
  --sage:          #DDE2D2;
  --sage-deep:     #C8D0B8;
  --cypress:       #2A3A26;
  --cypress-soft:  #4A5A45;
  --brass:         #A8824A;
  --brass-light:   #C49B5C;
  --rule:          #D8D2C2;
  --white:         #FFFFFF;

  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --header-h: 80px;
  --header-h-mobile: 68px;

  --container: 1280px;
  --container-narrow: 960px;
  --container-prose: 720px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body {
  background: var(--limestone);
  color: var(--cypress);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }
::selection { background: var(--brass); color: var(--limestone); }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ----- container ----- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
.wrap-narrow { max-width: var(--container-narrow); }
.wrap-prose  { max-width: var(--container-prose); }

@media (min-width: 720px)  { .wrap { padding: 0 40px; } }
@media (min-width: 1024px) { .wrap { padding: 0 64px; } }

/* ----- type system ----- */
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 400; color: var(--cypress); letter-spacing: -0.01em; }
h1 { font-weight: 300; font-size: clamp(38px, 7vw, 88px); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 4.6vw, 44px); line-height: 1.1; }
h3 { font-size: clamp(22px, 3.2vw, 30px); line-height: 1.15; }
h4 { font-size: clamp(18px, 2.4vw, 22px); line-height: 1.2; }

p { font-size: 17px; line-height: 1.65; color: var(--cypress); }
p.lede { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.55; color: var(--cypress); max-width: 60ch; }
p.body-l { font-size: 19px; line-height: 1.6; }
p.body-s { font-size: 14px; line-height: 1.55; color: var(--cypress-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  display: inline-block;
}

em { font-style: italic; }

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 30px;
  min-height: 52px;
  border-radius: 0;
  cursor: pointer;
  transition: all 220ms var(--ease);
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arrow { display: inline-block; transition: transform 220ms var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--cypress);
  color: var(--limestone);
  border-color: var(--cypress);
}
.btn-primary:hover { background: var(--brass); border-color: var(--brass); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--cypress);
  border-color: var(--cypress);
}
.btn-outline:hover { background: var(--cypress); color: var(--limestone); }

.btn-light {
  background: transparent;
  color: var(--limestone);
  border-color: rgba(255,255,255,0.85);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.btn-light:hover { background: var(--limestone); color: var(--cypress); border-color: var(--limestone); }

.btn-ghost {
  background: transparent;
  color: var(--cypress);
  border: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--cypress);
  border-radius: 0;
  min-height: 0;
  letter-spacing: 0.16em;
}
.btn-ghost:hover { color: var(--brass); border-color: var(--brass); }

@media (max-width: 480px) {
  .btn-stack .btn { width: 100%; }
}

/* =============================================================
   HEADER / NAVIGATION
   ============================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(244, 241, 234, 0.0);
  border-bottom: 1px solid transparent;
  transition: background 280ms var(--ease), border-color 280ms var(--ease);
}
.site-header.is-solid {
  background: rgba(244, 241, 234, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--rule);
}
.site-header.is-light .site-header-inner .nav-link,
.site-header.is-light .site-header-inner .header-cta { color: var(--limestone); }
.site-header.is-light .site-header-inner .logo { filter: brightness(0) invert(1); }
.site-header.is-light.is-solid .site-header-inner .nav-link,
.site-header.is-light.is-solid .site-header-inner .header-cta { color: var(--cypress); }
.site-header.is-light.is-solid .site-header-inner .logo { filter: none; }

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h-mobile);
  padding: 0 22px;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 720px)  { .site-header-inner { padding: 0 40px; height: var(--header-h); } }
@media (min-width: 1024px) { .site-header-inner { padding: 0 64px; } }

.logo {
  display: block;
  height: 36px;
  width: auto;
  transition: filter 280ms var(--ease);
}
@media (min-width: 720px) { .logo { height: 44px; } }

/* desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 38px;
}
@media (min-width: 960px) { .nav-desktop { display: flex; } }
.nav-desktop .nav-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cypress);
  padding: 8px 0;
  position: relative;
  transition: color 220ms var(--ease);
}
.nav-desktop .nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms var(--ease);
}
.nav-desktop .nav-link:hover::after,
.nav-desktop .nav-link.is-active::after { transform: scaleX(1); }
.nav-desktop .nav-link:hover { color: var(--brass); }

.header-cta {
  display: none;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--cypress);
  padding: 14px 22px;
  color: var(--cypress);
  transition: all 220ms var(--ease);
}
@media (min-width: 960px) { .header-cta { display: inline-flex; align-items: center; gap: 10px; } }
.header-cta:hover { background: var(--cypress); color: var(--limestone); }

/* mobile menu button */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: -10px;
  position: relative;
  z-index: 102;
}
@media (min-width: 960px) { .menu-toggle { display: none; } }
.menu-toggle .bars { display: block; width: 24px; height: 14px; position: relative; }
.menu-toggle .bars::before,
.menu-toggle .bars::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--cypress);
  transition: all 280ms var(--ease);
}
.menu-toggle .bars::before { top: 0; }
.menu-toggle .bars::after  { bottom: 0; }
.site-header.is-light:not(.is-solid) .menu-toggle .bars::before,
.site-header.is-light:not(.is-solid) .menu-toggle .bars::after { background: var(--limestone); }
body.menu-open .menu-toggle .bars::before { transform: translateY(6px) rotate(45deg); background: var(--cypress); }
body.menu-open .menu-toggle .bars::after  { transform: translateY(-6px) rotate(-45deg); background: var(--cypress); }

/* mobile drawer */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--limestone);
  z-index: 101;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h-mobile) + 24px) 28px 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
  overflow-y: auto;
}
body.menu-open .nav-mobile {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (min-width: 960px) { .nav-mobile { display: none; } }
.nav-mobile .nav-link {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--cypress);
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  letter-spacing: -0.01em;
}
.nav-mobile .nav-link .num {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-right: 14px;
  vertical-align: middle;
}
.nav-mobile .nav-cta {
  margin-top: 32px;
  display: block;
  text-align: center;
  background: var(--cypress);
  color: var(--limestone);
  padding: 22px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-mobile .nav-contact {
  margin-top: 32px;
  font-size: 14px;
  color: var(--cypress-soft);
  line-height: 1.7;
}
.nav-mobile .nav-contact a { color: var(--cypress); border-bottom: 1px solid var(--rule); }

body.menu-open { overflow: hidden; }

/* spacer for fixed header on inner pages (transparent header) */
main.has-header-spacer { padding-top: var(--header-h-mobile); }
@media (min-width: 720px) { main.has-header-spacer { padding-top: var(--header-h); } }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  background: #1a1a1a center/cover no-repeat;
  color: var(--limestone);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.10) 30%, rgba(0,0,0,0.20) 60%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h-mobile) + 32px) 22px 40px;
}
@media (min-width: 720px) {
  .hero-inner { padding: calc(var(--header-h) + 48px) 40px 56px; }
}
@media (min-width: 1024px) {
  .hero-inner { padding: calc(var(--header-h) + 64px) 64px 64px; }
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--limestone);
  max-width: 16ch;
  text-shadow: 0 1px 24px rgba(0,0,0,0.45);
}
.hero .hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.5;
  max-width: 50ch;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 18px rgba(0,0,0,0.45);
}
.hero .hero-ctas {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 360px;
}
@media (min-width: 540px) {
  .hero .hero-ctas { flex-direction: row; max-width: none; }
  .hero .hero-ctas .btn { flex: 0 0 auto; }
}
.hero .hero-meta {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.hero .hero-meta .where small { display: block; opacity: 0.65; margin-top: 4px; letter-spacing: 0.14em; font-size: 9px; }

/* compact hero variant for inner pages */
.hero-compact { min-height: 60vh; }
@media (min-width: 720px) { .hero-compact { min-height: 56vh; } }
.hero-compact h1 { max-width: 22ch; }

/* =============================================================
   SECTIONS
   ============================================================= */
section.block {
  padding: 64px 0;
}
@media (min-width: 720px) { section.block { padding: 96px 0; } }
@media (min-width: 1024px) { section.block { padding: 128px 0; } }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.section-head h2 { max-width: 18ch; }
.section-head .section-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 14px;
}
.section-head .section-note {
  flex-basis: 100%;
  font-size: 14px;
  color: var(--cypress-soft);
  max-width: 36ch;
}
@media (min-width: 720px) {
  .section-head .section-note { flex-basis: auto; }
}

/* sage section background */
section.block.bg-sage { background: var(--sage); }
section.block.bg-cypress { background: var(--cypress); color: var(--limestone); }
section.block.bg-cypress h2,
section.block.bg-cypress h3,
section.block.bg-cypress p { color: var(--limestone); }
section.block.bg-cypress p { color: rgba(244,241,234,0.78); }

/* =============================================================
   INTRO BLOCK (eyebrow + headline + lede + small grid)
   ============================================================= */
.intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .intro { grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
}
.intro .right { display: grid; gap: 28px; }
.intro .right .stat { padding-left: 20px; border-left: 1px solid var(--brass); }
.intro .right .stat .num {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1;
  color: var(--cypress);
  font-weight: 300;
}
.intro .right .stat .label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cypress-soft);
}

/* =============================================================
   SERVICE TILES (3 doors)
   ============================================================= */
.services {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 800px)  { .services { grid-template-columns: repeat(3, 1fr); } }
.svc {
  position: relative;
  padding: 36px 24px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.svc:last-child { border-bottom: 0; }
@media (min-width: 800px) {
  .svc { padding: 56px 40px; min-height: 320px; border-bottom: 0; border-right: 1px solid var(--rule); }
  .svc:last-child { border-right: 0; }
}
.svc .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 14px;
}
.svc h3 { margin-top: 16px; max-width: 14ch; }
.svc p {
  margin-top: 14px;
  color: var(--cypress-soft);
  font-size: 15px;
  flex: 1;
  max-width: 36ch;
}
.svc .svc-link {
  margin-top: 22px;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cypress);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--cypress);
  transition: all 220ms var(--ease);
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.svc .svc-link:hover { color: var(--brass); border-color: var(--brass); }

/* =============================================================
   PROJECT CARDS (numbered editorial)
   ============================================================= */
.projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 720px)  { .projects { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
@media (min-width: 1024px) { .projects { grid-template-columns: repeat(3, 1fr); gap: 36px; } }

.proj { display: block; }
.proj .frame {
  aspect-ratio: 4 / 5;
  background: var(--sage) center/cover no-repeat;
  border-radius: 0 56px 0 0;
  overflow: hidden;
  position: relative;
  transition: transform 480ms var(--ease);
}
@media (min-width: 720px) { .proj .frame { border-radius: 0 80px 0 0; } }
.proj:hover .frame { transform: translateY(-4px); }
.proj .meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 22px;
}
.proj .meta .n {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 14px;
}
.proj .meta .loc {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cypress-soft);
}
.proj h3 { margin-top: 6px; }
.proj .tags {
  margin-top: 12px;
  font-size: 13px;
  color: var(--cypress-soft);
  font-style: italic;
}

/* =============================================================
   PROJECT GRID (work page — denser)
   ============================================================= */
.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 720px) { .project-grid { grid-template-columns: repeat(2, 1fr); gap: 64px; } }
@media (min-width: 1024px) { .project-grid { grid-template-columns: repeat(2, 1fr); gap: 80px 56px; } }

.project-grid .proj:nth-child(odd) .frame { border-radius: 0 80px 0 0; }
.project-grid .proj:nth-child(even) .frame { border-radius: 80px 0 0 0; }
@media (max-width: 719px) {
  .project-grid .proj .frame,
  .project-grid .proj:nth-child(even) .frame { border-radius: 0 56px 0 0; }
}

/* =============================================================
   TESTIMONIAL
   ============================================================= */
.testimonial {
  background: var(--sage);
  padding: 64px 0;
}
@media (min-width: 720px) { .testimonial { padding: 112px 0; } }
.testimonial .inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 22px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.3;
  color: var(--cypress);
  letter-spacing: -0.01em;
}
.testimonial blockquote::before {
  content: '\201C';
  display: block;
  font-size: 1.6em;
  color: var(--brass);
  line-height: 0.5;
  margin-bottom: 16px;
}
.testimonial cite {
  display: block;
  margin-top: 32px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cypress-soft);
}

/* =============================================================
   QUALIFIER FORM
   ============================================================= */
.form-card {
  background: var(--limestone-dk);
  padding: 36px 22px;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 720px) { .form-card { padding: 64px 56px; } }

.form-card h2 { margin-bottom: 8px; }
.form-card .lede { color: var(--cypress-soft); font-size: 16px; margin-bottom: 32px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
}

.field { display: flex; flex-direction: column; }
.field label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cypress-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--cypress);
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--cypress);
  outline: none;
  min-height: 48px;
  width: 100%;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; padding: 14px 0; line-height: 1.5; }
.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cypress) 50%),
    linear-gradient(135deg, var(--cypress) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 22px,
    calc(100% - 8px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--cypress-soft); opacity: 0.5; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--brass); }
.field.field-full { grid-column: 1 / -1; }

.form-submit {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-submit .fine {
  font-size: 12px;
  color: var(--cypress-soft);
  max-width: 32ch;
}
@media (max-width: 600px) {
  .form-submit { flex-direction: column; align-items: stretch; }
  .form-submit .btn { width: 100%; }
}

.form-success,
.form-error {
  display: none;
  padding: 18px 22px;
  margin-top: 22px;
  font-size: 14px;
}
.form-success { background: var(--sage); color: var(--cypress); border-left: 3px solid var(--brass); }
.form-error   { background: #fce8e6; color: #8b1f15; border-left: 3px solid #8b1f15; }
.form-card.is-success .form-success { display: block; }
.form-card.is-error   .form-error   { display: block; }

/* =============================================================
   CALLOUT (full-width image + overlay text — used on residential/commercial)
   ============================================================= */
.callout {
  position: relative;
  background: #1a1a1a center/cover no-repeat;
  color: var(--limestone);
  padding: 96px 0;
  overflow: hidden;
}
@media (min-width: 720px) { .callout { padding: 160px 0; } }
.callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.65));
}
.callout .inner { position: relative; z-index: 1; max-width: 720px; }
.callout h2 { color: var(--limestone); }
.callout p { color: rgba(255,255,255,0.88); margin-top: 18px; max-width: 50ch; }
.callout .btn { margin-top: 32px; }

/* =============================================================
   FEATURE LIST (used on services pages)
   ============================================================= */
.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 56px;
  margin-top: 16px;
}
@media (min-width: 720px) { .feature-list { grid-template-columns: 1fr 1fr; gap: 48px 64px; } }

.feature-list .feature { padding-top: 24px; border-top: 1px solid var(--rule); }
.feature-list .feature .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 13px;
  margin-bottom: 10px;
  display: block;
}
.feature-list .feature h4 { margin-bottom: 10px; }
.feature-list .feature p { color: var(--cypress-soft); font-size: 15px; }

/* =============================================================
   SPLIT (two-column with image)
   ============================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
@media (min-width: 1024px) { .split { gap: 96px; } }
.split.reverse > :first-child { order: 0; }
@media (min-width: 900px) {
  .split.reverse > :first-child { order: 2; }
}
.split .frame {
  aspect-ratio: 4 / 5;
  background: var(--sage) center/cover no-repeat;
  border-radius: 0 80px 0 0;
  overflow: hidden;
}
.split .text h2 { margin-bottom: 22px; }
.split .text p { color: var(--cypress-soft); }
.split .text p + p { margin-top: 16px; }
.split .text .btn { margin-top: 32px; }

/* =============================================================
   PROCESS (numbered steps)
   ============================================================= */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 720px) { .process { grid-template-columns: repeat(2, 1fr); gap: 48px; } }
@media (min-width: 1024px) { .process { grid-template-columns: repeat(4, 1fr); gap: 36px; } }

.process .step { padding-top: 28px; border-top: 1px solid var(--rule); }
.process .step .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: var(--brass);
  display: block;
  margin-bottom: 18px;
}
.process .step h4 { margin-bottom: 12px; }
.process .step p { color: var(--cypress-soft); font-size: 15px; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--cypress);
  color: var(--limestone);
  padding: 72px 0 28px;
}
@media (min-width: 720px) { .site-footer { padding: 112px 0 36px; } }

.site-footer .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 600px) { .site-footer .grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .site-footer .grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }

.site-footer .lockup { margin-bottom: 22px; }
.site-footer .lockup img { height: 52px; width: auto; filter: brightness(0) invert(1); }
.site-footer .blurb {
  font-size: 14px;
  color: rgba(244,241,234,0.7);
  max-width: 32ch;
  line-height: 1.65;
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 18px;
  font-weight: 600;
}
.site-footer ul li { margin-bottom: 12px; }
.site-footer ul li a {
  color: rgba(244,241,234,0.72);
  font-size: 14px;
  display: inline-block;
  padding: 4px 0;
  min-height: 32px;
  transition: color 220ms var(--ease);
}
.site-footer ul li a:hover { color: var(--brass-light); }
.site-footer .contact-line { color: rgba(244,241,234,0.72); font-size: 14px; line-height: 1.7; }
.site-footer .contact-line a { color: var(--limestone); border-bottom: 1px solid rgba(244,241,234,0.3); }
.site-footer .contact-line a:hover { color: var(--brass-light); border-color: var(--brass-light); }

.site-footer .copyright {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(244,241,234,0.12);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(244,241,234,0.5);
}
.site-footer .copyright a { color: rgba(244,241,234,0.7); }
.site-footer .copyright a:hover { color: var(--brass-light); }

/* =============================================================
   UTILITIES & MISC
   ============================================================= */
.center { text-align: center; }
.mt-0  { margin-top: 0  !important; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cypress);
  color: var(--limestone);
  padding: 12px 18px;
  z-index: 200;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.skip-link:focus { left: 12px; top: 12px; }

/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
