/* ============================================================
   DMC Property Services — Leesburg, VA
   Palette + type built up from the client's real logo:
   mark black, grass #1D6911 (sampled straight off the artwork).
   ============================================================ */

/* === defensive base — injected by harden_css.py; do not hand-edit === */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-padding-top: calc(var(--nav-h, 72px) + 1rem); }
img, svg, video, iframe, canvas, table { display: block; max-width: 100%; }
p, li, h1, h2, h3, h4, blockquote, td, dd, dt { overflow-wrap: anywhere; }
form[style*="min-height"] { align-content: center; }
/* === end defensive base === */

:root{
  --ink:      #0B0F0C;
  --ink-2:    #121A13;
  --ink-3:    #1C261D;
  --bone:     #F3F1EA;
  --bone-2:   #E7E3D6;
  --moss:     #1D6911;   /* their exact logo green */
  --moss-lit: #2F921C;
  --moss-dim: #14480C;
  --stone:    #8E9187;
  --stone-lt: #B6B8AE;

  --display: 'Archivo Black', 'Arial Black', Impact, sans-serif;
  --body: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;

  --nav-h: 74px;
  --wrap: 1240px;
  --r: 3px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing: border-box; }

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

body{
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img{ display: block; }
a{ color: inherit; }

.wrap{
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 3rem);
}

.skip{
  position: absolute; left: .5rem; top: 0; z-index: 200;
  background: var(--moss); color: var(--bone);
  padding: .7rem 1.1rem; font-weight: 600;
  transform: translateY(-140%);
  transition: transform .18s var(--ease);
}
.skip:focus{ transform: translateY(.5rem); }

:focus-visible{ outline: 2px solid var(--moss-lit); outline-offset: 3px; }

/* ── shared type ─────────────────────────────────────────── */

.eyebrow{
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 1.1rem;
}
.eyebrow--lite{ color: var(--stone-lt); }

.sec-title{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: .98;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin: 0 0 1.15rem;
}

.sec-lede{
  max-width: 48ch;
  margin: 0;
  color: #4A5147;
  font-size: 1.04rem;
}

.sec-head{ margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.sec-head--lite .sec-lede{ color: var(--stone-lt); }
.sec-head--lite .sec-title{ color: var(--bone); }

/* ── buttons ─────────────────────────────────────────────── */

.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r);
  font-family: var(--body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn--go{ background: var(--moss); color: var(--bone); }
.btn--go:hover{ background: var(--moss-lit); transform: translateY(-2px); }

.btn--ghost{ border-color: rgba(243,241,234,.35); color: var(--bone); }
.btn--ghost:hover{ border-color: var(--bone); background: rgba(243,241,234,.08); }

.btn--ink{ background: var(--ink); color: var(--bone); }
.btn--ink:hover{ background: #000; transform: translateY(-2px); }

.btn--ghost-ink{ border-color: rgba(11,15,12,.35); color: var(--ink); }
.btn--ghost-ink:hover{ border-color: var(--ink); background: rgba(11,15,12,.07); }

/* ── nav ─────────────────────────────────────────────────── */

.nav{
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(243,241,234,.1);
}
.nav__row{
  display: flex; align-items: center; gap: 1rem;
  height: var(--nav-h);
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 3rem);
}
.nav__brand{ display: block; flex: none; }
.nav__brand img{ height: 42px; width: auto; }

.nav__links{
  display: flex; align-items: center; gap: 1.9rem;
  margin-left: auto;
}
.nav__links a{
  color: var(--stone-lt);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .18s var(--ease);
}
.nav__links a:hover{ color: var(--bone); }

.nav__cta{ display: flex; align-items: center; gap: 1.1rem; margin-left: 2.2rem; }
.nav__tel{
  color: var(--bone);
  text-decoration: none;
  font-family: var(--display);
  font-size: .95rem;
  letter-spacing: .01em;
}
.nav__tel:hover{ color: var(--moss-lit); }
.nav__btn{ padding: .72rem 1.15rem; font-size: .76rem; }

.burger{
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  background: none; border: 1px solid rgba(243,241,234,.25); border-radius: var(--r);
  cursor: pointer;
}
.burger span{ display: block; width: 18px; height: 2px; background: var(--bone); transition: transform .22s var(--ease), opacity .22s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile{
  display: none;
  flex-direction: column;
  padding: .5rem clamp(1.15rem, 4vw, 3rem) 1.4rem;
  background: var(--ink);
  border-top: 1px solid rgba(243,241,234,.08);
}
.mobile.is-open{ display: flex; }
.mobile a{
  color: var(--bone);
  text-decoration: none;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(243,241,234,.08);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mobile__tel{ color: var(--moss-lit) !important; border-bottom: 0 !important; }

/* ── hero ────────────────────────────────────────────────── */

.hero{
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  background: var(--ink);
}
.hero__media{ position: absolute; inset: 0; z-index: -2; }
.hero__media picture{ display: block; width: 100%; height: 100%; }
/* the upscale is ~16:9, close to the desktop hero box, so centre it */
.hero__media img{ width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }

/* A tall box crops a 16:9 photo hard on the horizontal — dead centre lands on
   bare siding. Pull the focal point left onto the tree and the planted bed,
   which is the whole point of the shot. */
@media (max-width: 1024px){
  .hero__media img{ object-position: 34% 50%; }
}

.hero__scrim{
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(102deg, rgba(11,15,12,.96) 0%, rgba(11,15,12,.9) 34%, rgba(11,15,12,.5) 62%, rgba(11,15,12,.34) 100%),
    linear-gradient(0deg, rgba(11,15,12,.72) 0%, rgba(11,15,12,0) 42%);
}

.hero__inner{
  container-type: inline-size;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(.85rem, 1.6cqi, 1.5rem);
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(2.4rem, 6vh, 4.5rem) clamp(1.15rem, 4vw, 3rem);
}

.hero__h1{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.55rem, 12.2cqi, 5.6rem);
  line-height: .9;
  letter-spacing: -.025em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0;
  max-width: 14ch;
}
.hero__h1 em{ font-style: normal; color: var(--moss-lit); }

.hero__sub{
  max-width: 46ch;
  margin: 0;
  color: #D3D6CE;
  font-size: clamp(.98rem, 1.9cqi, 1.14rem);
  line-height: 1.6;
}

.hero__cta{ display: flex; flex-wrap: wrap; gap: .7rem; }

.hero__proof{
  /* inline, not a flex row — wrapping text would strand the mark on its own line */
  margin: 0;
  color: var(--stone-lt);
  font-size: clamp(.78rem, 1.5cqi, .88rem);
  font-weight: 500;
}
.hero__proof-mark{ display: inline-block; margin-right: .5rem; color: var(--moss-lit); font-size: .7em; vertical-align: middle; }

@media (max-width: 720px){
  /* the diagonal ramp covers the whole width on a phone, burying the photo;
     go vertical so the yard reads at the top and the type still has contrast */
  .hero__scrim{
    background:
      linear-gradient(180deg, rgba(11,15,12,.5) 0%, rgba(11,15,12,.82) 26%, rgba(11,15,12,.9) 70%, rgba(11,15,12,.8) 100%);
  }
}

/* ── marquee strip ───────────────────────────────────────── */

.strip{
  overflow: hidden;
  background: var(--moss);
  color: var(--bone);
  padding: .85rem 0;
  border-block: 1px solid var(--moss-dim);
}
.strip__track{
  display: flex; align-items: center; gap: 1.6rem;
  width: max-content;
  animation: slide 46s linear infinite;
  font-family: var(--display);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.strip__track i{ font-style: normal; font-size: .5rem; opacity: .55; }
@keyframes slide{ to{ transform: translateX(-50%); } }

/* ── services ────────────────────────────────────────────── */

.services{ padding: clamp(4.5rem, 9vw, 8rem) 0; background: var(--bone); }

.svc{ list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(11,15,12,.16); }

.svc__item{
  display: grid;
  grid-template-columns: 5rem minmax(0,1fr) auto;
  align-items: start;
  gap: 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.35rem) 0;
  border-bottom: 1px solid rgba(11,15,12,.16);
  transition: background .25s var(--ease);
}
.svc__item:hover{ background: rgba(29,105,17,.045); }

.svc__no{
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--moss);
  letter-spacing: .02em;
  padding-top: .3rem;
}
.svc__body h3{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0 0 .55rem;
}
.svc__body p{ margin: 0; max-width: 62ch; color: #4A5147; }

.svc__link{
  align-self: center;
  display: inline-flex; align-items: center; gap: .45rem;
  white-space: nowrap;
  text-decoration: none;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--moss);
  border-bottom: 1px solid rgba(29,105,17,.4);
  padding-bottom: 2px;
  transition: gap .2s var(--ease), border-color .2s var(--ease);
}
.svc__link:hover{ gap: .8rem; border-color: var(--moss); }

.svc__note{
  margin: 2.2rem 0 0;
  color: #4A5147;
  font-size: .98rem;
}
.svc__note a{ color: var(--moss); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(29,105,17,.4); }

/* ── stats ───────────────────────────────────────────────── */

.stats{ background: var(--ink-2); color: var(--bone); padding: clamp(2.8rem, 5vw, 4rem) 0; }
.stats__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.stat{ display: flex; flex-direction: column; gap: .35rem; }
.stat__n{
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1;
  color: var(--moss-lit);
  letter-spacing: -.01em;
}
.stat__l{ color: var(--stone-lt); font-size: .87rem; line-height: 1.45; }

/* ── work / gallery ──────────────────────────────────────── */

.work{ background: var(--ink); padding: clamp(4.5rem, 9vw, 8rem) 0; }

.grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: clamp(.6rem, 1.2vw, 1rem);
}
.shot{
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--ink-3);
  grid-column: span 2;
  aspect-ratio: 4 / 3;
}
.shot picture{ display: block; width: 100%; height: 100%; }
.shot img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.shot:hover img{ transform: scale(1.045); }

.shot--wide{ grid-column: span 4; aspect-ratio: 16 / 10; }
.grid .shot:nth-child(2){ aspect-ratio: auto; height: 100%; }
.grid .shot:nth-child(3),
.grid .shot:nth-child(4){ grid-column: span 3; aspect-ratio: 3 / 2; }

/* ── reviews ─────────────────────────────────────────────── */

.reviews{ background: var(--bone-2); padding: clamp(4.5rem, 9vw, 8rem) 0; }

.quotes{
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: start;
}
.quote{
  margin: 0;
  padding: clamp(1.7rem, 3.2vw, 2.6rem);
  background: var(--bone);
  border: 1px solid rgba(11,15,12,.13);
  border-radius: var(--r);
  border-top: 3px solid var(--moss);
}
.quote__tag{
  margin: 0 0 1.15rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--moss);
}
.quote blockquote{ margin: 0; }
.quote blockquote p{
  margin: 0 0 .9rem;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.6;
  color: #2A312A;
}
.quote--lead blockquote p:first-child{
  font-family: var(--body);
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}
.quote blockquote p:last-child{ margin-bottom: 0; }

.quote figcaption{
  display: flex; flex-direction: column; gap: .1rem;
  margin-top: 1.5rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(11,15,12,.13);
}
.quote__who{ font-family: var(--display); font-size: .95rem; text-transform: uppercase; letter-spacing: .01em; }
.quote__where{ font-size: .82rem; color: #6B7268; }

/* ── service area ────────────────────────────────────────── */

.area{ background: var(--ink); color: var(--bone); padding: clamp(4.5rem, 9vw, 8rem) 0; }
.area__grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.area .sec-title{ color: var(--bone); }
.area .sec-lede{ color: var(--stone-lt); }

.area__list{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  gap: .55rem 1rem;
  list-style: none;
  margin: 2rem 0 2.4rem;
  padding: 0;
}
.area__list li{
  position: relative;
  padding-left: 1.15rem;
  font-size: .95rem;
  color: #D3D6CE;
}
.area__list li::before{
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; background: var(--moss-lit);
}
.area__cta{ display: flex; flex-wrap: wrap; gap: .7rem; }

.card{
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--ink-2);
  border: 1px solid rgba(243,241,234,.13);
  border-radius: var(--r);
  border-top: 3px solid var(--moss);
}
.card__logo{ width: 148px; height: auto; margin-bottom: 1.6rem; }
.card__dl{ margin: 0; }
.card__dl > div{
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .72rem 0;
  border-bottom: 1px solid rgba(243,241,234,.1);
}
.card__dl dt{ color: var(--stone); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.card__dl dd{ margin: 0; text-align: right; font-weight: 600; font-size: .96rem; }
.card__dl dd a{ text-decoration: none; color: var(--moss-lit); }

.card__fb{
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.5rem;
  color: var(--moss-lit);
  text-decoration: none;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
}
.card__fb:hover{ color: var(--bone); }

/* ── final cta ───────────────────────────────────────────── */

.final{ background: var(--moss); color: var(--bone); padding: clamp(4rem, 8vw, 6.5rem) 0; }
.final__inner{ display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.1rem; }
.final__h{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  line-height: .98;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin: 0;
}
.final__inner > p{ margin: 0; max-width: 48ch; color: rgba(243,241,234,.86); }
.final__cta{ display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-top: .6rem; }

/* ── footer ──────────────────────────────────────────────── */

.foot{ background: var(--ink); color: var(--stone-lt); padding: clamp(3.2rem, 6vw, 5rem) 0 0; }
.foot__grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}
.foot__brand img{ width: 168px; height: auto; margin-bottom: 1.2rem; }
.foot__brand p{ margin: 0; font-size: .9rem; line-height: 1.7; }
.foot__nav{ display: flex; flex-direction: column; gap: .6rem; }
.foot__nav h3{
  font-family: var(--display); font-weight: 400;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone); margin: 0 0 .4rem;
}
.foot__nav a{ color: var(--stone-lt); text-decoration: none; font-size: .9rem; }
.foot__nav a:hover{ color: var(--moss-lit); }

.foot__base{ border-top: 1px solid rgba(243,241,234,.1); padding-block: 1.5rem; }
.foot__base p{ margin: 0; font-size: .8rem; color: var(--stone); }

/* ── reveal (below the fold only) ────────────────────────── */

.reveal{ opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity: 1; transform: none; }

/* ── responsive ──────────────────────────────────────────── */

@media (max-width: 1020px){
  .nav__links{ display: none; }
  .burger{ display: flex; }
  .nav__cta{ margin-left: auto; gap: .7rem; }
  .quotes{ grid-template-columns: 1fr; }
  .area__grid{ grid-template-columns: 1fr; }
  .foot__grid{ grid-template-columns: 1fr 1fr; }
  .foot__brand{ grid-column: 1 / -1; }
}

@media (max-width: 899px){
  .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid .shot,
  .grid .shot--wide,
  .grid .shot:nth-child(2),
  .grid .shot:nth-child(3),
  .grid .shot:nth-child(4){ grid-column: span 1; aspect-ratio: 4 / 3; height: auto; }
  .stats__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px){
  :root{ --nav-h: 66px; }
  .nav__brand img{ height: 34px; }
  .nav__tel{ display: none; }
  .svc__item{ grid-template-columns: 3rem minmax(0,1fr); gap: .5rem 1rem; }
  .svc__link{ grid-column: 2; justify-self: start; margin-top: .9rem; }
  .hero__cta .btn{ flex: 1 1 100%; }
}

@media (max-width: 560px){
  .grid{ grid-template-columns: 1fr; }
  .foot__grid{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal{ opacity: 1; transform: none; }
  .strip__track{ animation: none; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.chead{
  background: var(--ink);
  color: var(--bone);
  padding: clamp(3.2rem, 7vw, 6rem) 0 clamp(3.6rem, 7vw, 6rem);
  border-bottom: 3px solid var(--moss);
}
.chead__h{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.95rem, 5.4vw, 3.5rem);
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0 0 1.15rem;
}
.chead__sub{
  max-width: 54ch;
  margin: 0;
  color: #D3D6CE;
  font-size: 1.04rem;
}
.chead__sub a{ color: var(--moss-lit); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(47,146,28,.5); }

.cbody{ background: var(--bone); padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem); }
.cbody__grid{
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: clamp(1.5rem, 3vw, 2.6rem);
  align-items: start;
}

/* ── form card ───────────────────────────────────────────── */

.fcard{
  padding: clamp(1.5rem, 3.2vw, 2.6rem);
  background: #FFF;
  border: 1px solid rgba(11,15,12,.13);
  border-radius: var(--r);
  border-top: 3px solid var(--moss);
}
.fcard__h{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0 0 1.7rem;
}

.form-fields{ display: flex; flex-direction: column; gap: 1.15rem; }
/* [hidden] is display:none in the UA sheet — a class that sets display beats it.
   Without this the fields survive submit and the confirmation just piles on. */
.form-fields[hidden]{ display: none; }

.field{ display: flex; flex-direction: column; gap: .45rem; }
.field label{
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #39412F;
}
.field label span{ font-weight: 500; letter-spacing: .02em; text-transform: none; color: #7A8076; }

.field input,
.field textarea{
  width: 100%;
  padding: .85rem .95rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid rgba(11,15,12,.2);
  border-radius: var(--r);
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.field textarea{ resize: vertical; min-height: 7.5rem; line-height: 1.55; }
.field input::placeholder,
.field textarea::placeholder{ color: #9AA095; }
.field input:focus,
.field textarea:focus{ outline: none; border-color: var(--moss); background: #FFF; }

.field-row{ display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.15rem; }

.turnstile-box{ margin-top: 1.25rem; }

.fcard__submit{ width: 100%; margin-top: 1.4rem; padding-block: 1.05rem; }
.fcard__submit:disabled{ opacity: 1; }
.fcard__submit.is-sent{
  background: var(--ink);
  color: var(--moss-lit);
  cursor: default;
  transform: none;
}

.form-status{
  margin: 1.15rem 0 0;
  padding: .95rem 1.05rem;
  border-radius: var(--r);
  font-size: .95rem;
  line-height: 1.55;
}
.form-status.is-ok{ background: rgba(29,105,17,.1); border: 1px solid rgba(29,105,17,.32); color: #16500C; }
.form-status.is-err{ background: rgba(176,58,32,.09); border: 1px solid rgba(176,58,32,.32); color: #8E2E19; }

.fcard__fine{ margin: 1.15rem 0 0; font-size: .8rem; line-height: 1.55; color: #7A8076; }

/* ── contact sidebar ─────────────────────────────────────── */

.cside{ display: flex; flex-direction: column; gap: clamp(1rem, 2vw, 1.4rem); }
.cside__block{
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  background: var(--bone-2);
  border: 1px solid rgba(11,15,12,.12);
  border-radius: var(--r);
}
.cside__block h2{
  font-family: var(--display);
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 1rem;
}
.cside__big{
  display: block;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.4vw, 1.85rem);
  letter-spacing: -.01em;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 1.15rem;
}
.cside__big:hover{ color: var(--moss); }
.cside__pair{ display: flex; flex-wrap: wrap; gap: .55rem; }
.cside__pair .btn{ flex: 1 1 9rem; padding-inline: 1rem; }

.cside__dl{ margin: 0; }
.cside__dl > div{
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .62rem 0;
  border-bottom: 1px solid rgba(11,15,12,.12);
}
.cside__dl dt{ font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: #7A8076; }
.cside__dl dd{ margin: 0; text-align: right; font-weight: 600; font-size: .93rem; }

.cside__fb{
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.2rem;
  color: var(--moss);
  text-decoration: none;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
}
.cside__fb:hover{ color: var(--ink); }

.cside__area{ margin: 0; font-size: .93rem; line-height: 1.7; color: #4A5147; }

@media (max-width: 900px){
  .cbody__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .field-row{ grid-template-columns: 1fr; }
}

/* === site credit (injected by credit_footer.py); do not hand-edit === */
.site-credit {
  margin: 2.25rem 0 0;
  padding-inline: 1.25rem;
  font-size: .73rem;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
  opacity: .65;
}
.site-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 128, 128, .5);
  border-bottom: 1px solid color-mix(in srgb, currentColor 45%, transparent);
  transition: border-bottom-color .25s ease;
}
.site-credit a:hover,
.site-credit a:focus-visible { border-bottom-color: currentColor; }
@media (prefers-reduced-motion: reduce) {
  .site-credit a { transition: none; }
}

/* Shares the footer's own copyright row: sits opposite it rather than adding a
   third line under the page. The parent is reached with :has() so no client
   class name has to be guessed, and the rule cannot fire on a footer that has
   no inline credit in it. */
.site-credit--inline {
  margin: 0;
  padding: 0;
  text-align: right;
}
footer :has(> .site-credit--inline) {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .35rem 1.5rem;
}
/* === end site credit === */

/* === nav toggle right — injected by nav_toggle_right.py; do not hand-edit ===
   Below this breakpoint the desktop links are hidden, and any rule keyed off
   them (`.links + .cta { margin-left: 0 }` and friends) keeps matching because
   display:none leaves the element in the DOM. That silently cancels the push
   that puts the hamburger in the corner. Give it back.

   !important on purpose: the whole failure mode is another rule winning this
   exact property, and that rule may outrank this one on specificity.
   margin-inline-start rather than margin-left so the toggle sits at the END of
   the bar, which stays correct if the page is ever served RTL. */
@media (max-width: 1020px) {
  .nav__row > .nav__cta { margin-inline-start: auto !important; }
}
/* === end nav toggle right === */
