/* ==========================================================================
   MONUMENT CONSTRUCTION GROUP, LLC
   Brand stylesheet — shared across all pages.

   GOLD DISCIPLINE: gold is a signal, not decoration. Maximum two or three
   load-bearing gold moments per viewport. Approved uses only: masthead rule,
   section divider rules, one persuasion callout, CTA accents, contact details,
   footer company name. Bullets, icons, card borders and list markers are
   charcoal or warm hairline — never gold.

   CONTRAST: --gold-deep (#9C7F42) FAILS WCAG AA as body-size text on every
   ground (charcoal 4.16, stone 3.20, white 3.80). It is permitted for rules
   and large numerals ONLY. Small gold text uses --gold on charcoal (5.73)
   or --gold-ink on light grounds (stone 4.64, white 5.51).
   ========================================================================== */

:root{
  color-scheme: light;

  --charcoal:      #26221D;
  --charcoal-2:    #332D26;
  --gold:          #B8975A;
  --gold-deep:     #9C7F42;
  --gold-ink:      #7F6531;
  --white:         #FFFFFF;
  --stone:         #EFEBE3;
  --line:          #D8D2C4;
  --gray:          #666666;
  --body:          #3A3A3A;
  --muted-on-dark: #B5AFA3;

  --display: Georgia, "Lora", "Source Serif 4", "Times New Roman", serif;
  --ui: Calibri, "Source Sans 3", Inter, system-ui, -apple-system, sans-serif;

  --frame: 20px;
  --measure: 1180px;
  --narrow: 720px;
}
@media (min-width:900px){ :root{ --frame:48px; } }
@media (min-width:1280px){ :root{ --frame:64px; } }

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

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

body{
  margin:0;
  background: var(--white);
  color: var(--body);
  font-family: var(--ui);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

img,svg{ max-width:100%; }
img{ height:auto; }

a{ color: var(--gold-ink); }

:focus-visible{ outline:2px solid var(--gold-ink); outline-offset:3px; }
.masthead :focus-visible,
.band-dark :focus-visible,
.hero :focus-visible{ outline-color: var(--gold); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; transition-duration:.01ms !important; }
}

.skip{
  position:absolute; left:-9999px; top:0;
  background: var(--charcoal); color: var(--white);
  padding:12px 18px; z-index:99; font-weight:600;
}
.skip:focus{ left:0; }

.visually-hidden{
  position:absolute; width:1px; height:1px; overflow:hidden;
  clip:rect(0 0 0 0); clip-path:inset(50%); white-space:nowrap;
}

/* ---------- frame: never full-bleed content on desktop ---------- */
.frame{
  width:100%;
  max-width: var(--measure);
  margin-inline:auto;
  padding-inline: var(--frame);
}

/* ---------- type primitives ---------- */
.eyebrow{
  font-size:11px;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin:0;
}
.eyebrow--on-dark{ color: var(--gold); }
.eyebrow--on-light{ color: var(--gold-ink); }

.section-head{
  font-family: var(--display);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:15px;
  margin:0 0 14px;
  padding-bottom:14px;
  border-bottom:1px solid var(--gold-deep);   /* gold moment: section divider */
}
@media (min-width:900px){ .section-head{ font-size:17px; } }
.section-head--on-dark{ color: var(--white); }
.section-head--on-light{ color: var(--charcoal); }

.lede{
  font-size:18px;
  line-height:1.6;
  max-width:62ch;
  margin:0;
}
@media (min-width:900px){ .lede{ font-size:19px; } }

/* ---------- bands ---------- */
.band{ padding-block:52px; }
@media (min-width:900px){ .band{ padding-block:88px; } }

.band-dark{ background: var(--charcoal); color: var(--muted-on-dark); }
.band-stone{ background: var(--stone); border-block:1px solid var(--line); }
.band-white{ background: var(--white); }

/* ==========================================================================
   MASTHEAD
   ========================================================================== */
.gold-rule{ height:3px; background: var(--gold); }   /* gold moment: masthead */

.masthead{ background: var(--white); border-bottom:1px solid var(--line); }
.masthead__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding-block:14px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color: var(--charcoal); min-width:0;
}
.brand__mark{ width:23px; height:28px; flex:none; color: var(--charcoal); }
.brand__name{
  font-family: var(--display);
  font-weight:700; font-size:13px;
  letter-spacing:.13em; line-height:1.25; text-transform:uppercase;
}
.brand__name span{ display:block; }
.brand__legal{ font-size:10px; letter-spacing:.15em; color: var(--gray); font-weight:600; }

@media (min-width:900px){
  .brand__mark{ width:26px; height:31px; }
  .brand__name{ font-size:14px; }
  .brand__name span{ display:inline; }
  .brand__legal{ font-size:14px; color: var(--charcoal); letter-spacing:.13em; }
}

.nav{ display:none; }
@media (min-width:900px){
  .nav{ display:flex; align-items:center; gap:30px; }
  .nav a{
    font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
    color: var(--charcoal); text-decoration:none;
    padding-block:4px; border-bottom:1px solid transparent;
  }
  .nav a:hover,
  .nav a[aria-current="page"]{ border-bottom-color: var(--charcoal); }
  .nav__tel{
    font-family: var(--display); font-size:15px; letter-spacing:.04em;
    text-transform:none !important; border-bottom:1px solid var(--line) !important;
  }
}

.tel-btn{
  display:inline-flex; align-items:center; gap:7px; flex:none;
  font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color: var(--white); background: var(--charcoal);
  text-decoration:none; padding:9px 13px;
}
@media (min-width:900px){ .tel-btn{ display:none; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{ position:relative; background: var(--charcoal); overflow:hidden; isolation:isolate; }

.hero__motif{ display:none; }
@media (min-width:1100px){
  .hero__motif{
    display:block; position:absolute; z-index:0;
    right: max(var(--frame), calc((100% - var(--measure)) / 2 + var(--frame)));
    bottom:0; height:74%; width:auto;
    color: var(--charcoal-2); pointer-events:none;
  }
}

.hero__inner{ position:relative; z-index:1; padding-block:56px 60px; }
@media (min-width:900px){ .hero__inner{ padding-block:96px 104px; } }
@media (min-width:900px){ .hero__copy{ max-width:700px; } }

.hero h1{
  font-family: var(--display); font-weight:700; color: var(--white);
  margin:22px 0 0;
  font-size: clamp(2.15rem, 9vw, 2.9rem);
  line-height:1.06; letter-spacing:-.005em; text-wrap:balance;
}
.hero h1 span{ display:block; }
@media (min-width:900px){ .hero h1{ font-size: clamp(3rem, 4.6vw, 4.15rem); } }

.hero__deck{
  color: var(--muted-on-dark); font-size:17px; line-height:1.62;
  margin:24px 0 0; max-width:50ch;
}
@media (min-width:900px){ .hero__deck{ font-size:19px; margin-top:30px; } }

.hero__actions{
  margin-top:34px; display:flex; flex-direction:column;
  align-items:flex-start; gap:18px;
}
@media (min-width:900px){
  .hero__actions{ flex-direction:row; align-items:center; gap:34px; margin-top:42px; }
}

.hero__sub{ margin:20px 0 0; color: var(--muted-on-dark); font-size:15px; max-width:46ch; }

.cta{
  display:inline-block;
  background: var(--gold); color: var(--charcoal);   /* gold moment: the one action */
  font-family: var(--display); font-weight:700; font-size:18px;
  text-decoration:none; padding:16px 30px;
  border:1px solid var(--gold);
  transition: background .18s ease, border-color .18s ease;
}
.cta:hover{ background: var(--white); border-color: var(--white); }

.tel-inline{
  font-family: var(--display); font-size:18px; color: var(--white);
  text-decoration:none; border-bottom:1px solid rgba(255,255,255,.35); padding-bottom:2px;
}
.tel-inline:hover{ border-bottom-color: var(--white); }

/* ==========================================================================
   PROOF BAND
   ========================================================================== */
.proof__callout{
  border-left:3px solid var(--gold);   /* gold moment: the credibility block */
  padding-left:20px; max-width:62ch;
}
@media (min-width:900px){ .proof__callout{ padding-left:28px; } }

.proof__text{
  font-family: var(--display); font-size:20px; line-height:1.42;
  color: var(--charcoal); margin:14px 0 0; text-wrap:pretty;
}
@media (min-width:900px){ .proof__text{ font-size:26px; } }

/* ==========================================================================
   TRADE GRID
   ========================================================================== */
.trades{ display:grid; gap:1px; background: var(--line); margin-top:34px; border:1px solid var(--line); }
@media (min-width:640px){ .trades{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1000px){ .trades{ grid-template-columns:repeat(4,1fr); } }

.trade{ background: var(--stone); padding:24px 22px 26px; }
.trade h3{
  font-family: var(--display); font-size:18px; font-weight:700;
  color: var(--charcoal); margin:0 0 8px; line-height:1.25;
}
.trade p{ margin:0; font-size:15px; color: var(--gray); line-height:1.55; }

/* ==========================================================================
   CLAIMS
   ========================================================================== */
.claims{ display:grid; gap:34px; margin-top:38px; }
@media (min-width:860px){ .claims{ grid-template-columns:repeat(3,1fr); gap:44px; } }

.claim h3{
  font-family: var(--display); font-size:22px; font-weight:700;
  color: var(--white); margin:0 0 12px; line-height:1.25; text-wrap:balance;
}
.claim p{ margin:0; color: var(--muted-on-dark); font-size:16px; line-height:1.62; }
.claim{ padding-top:20px; border-top:1px solid rgba(216,210,196,.28); }

/* ==========================================================================
   EXPERIENCE
   ========================================================================== */
.split{ display:grid; gap:38px; margin-top:34px; }
@media (min-width:900px){ .split{ grid-template-columns:1fr 1fr; gap:56px; } }

.subhead{
  font-family: var(--display); font-size:19px; font-weight:700;
  color: var(--charcoal); margin:0 0 6px;
}
.subnote{ margin:0 0 16px; font-size:15px; color: var(--gray); max-width:46ch; }

.namelist{ margin:0; padding:0; list-style:none; }
.namelist li{
  padding:11px 0; border-top:1px solid var(--line);
  font-size:16px; color: var(--charcoal);
}
.namelist li:last-child{ border-bottom:1px solid var(--line); }
.namelist .place{ display:block; font-size:14px; color: var(--gray); margin-top:2px; }

.inline-names{
  margin:0; font-size:16px; line-height:2; color: var(--charcoal);
}
.inline-names .sep{ color: var(--line); padding:0 6px; }

/* ==========================================================================
   MARKETS
   ========================================================================== */
.markets{
  margin:30px 0 0; padding:0; list-style:none;
  display:grid; gap:1px; background: rgba(216,210,196,.28);
  border:1px solid rgba(216,210,196,.28);
}
@media (min-width:700px){ .markets{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1000px){ .markets{ grid-template-columns:repeat(3,1fr); } }
.markets li{
  background: var(--charcoal); padding:16px 18px;
  color: var(--white); font-size:15px; font-weight:600; letter-spacing:.02em;
}

/* ==========================================================================
   CREDENTIALS
   ========================================================================== */
.creds{ display:grid; gap:1px; background: var(--line); margin-top:32px; border:1px solid var(--line); }
@media (min-width:760px){ .creds{ grid-template-columns:repeat(3,1fr); } }
.cred{ background: var(--white); padding:22px; }
.cred dt{
  font-size:11px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color: var(--gold-ink); margin:0 0 8px;
}
.cred dd{
  margin:0; font-family: var(--display); font-size:17px; line-height:1.4; color: var(--charcoal);
}
.cred dd small{
  display:block; font-family: var(--ui); font-size:14px;
  color: var(--gray); margin-top:6px; line-height:1.5;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band__grid{ display:grid; gap:28px; margin-top:26px; }
@media (min-width:900px){
  .cta-band__grid{ grid-template-columns:1.15fr .85fr; gap:56px; align-items:start; }
}
/* Scoped to the grid so it cannot override .section-head above it. */
.cta-band__grid h2{
  font-family: var(--display); font-weight:700; color: var(--white);
  font-size: clamp(1.9rem, 6vw, 2.3rem); line-height:1.12; margin:0; text-wrap:balance;
  text-transform:none; letter-spacing:normal; border-bottom:0; padding-bottom:0;
}
@media (min-width:900px){ .cta-band__grid h2{ font-size:2.7rem; } }
.cta-band__grid p{ color: var(--muted-on-dark); margin:18px 0 0; max-width:44ch; }

.contact-rule{ border-left:3px solid var(--gold); padding-left:22px; }
.contact-rule dt{
  font-size:11px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color: var(--gold); margin:0 0 4px;
}
.contact-rule dd{ margin:0 0 18px; }
.contact-rule dd:last-child{ margin-bottom:0; }
.contact-rule a{
  font-family: var(--display); font-size:20px; color: var(--white); text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.3);
}
.contact-rule a:hover{ border-bottom-color: var(--white); }
.contact-rule .plain{ font-family: var(--display); font-size:20px; color: var(--white); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot{ background: var(--charcoal-2); color: var(--muted-on-dark); padding-block:34px; }
.foot__inner{ display:flex; flex-wrap:wrap; gap:18px 32px; align-items:baseline; }
.foot__name{
  font-family: var(--display); font-weight:700; font-size:13px;
  letter-spacing:.13em; text-transform:uppercase;
  color: var(--gold);                     /* gold moment: footer company name */
  margin:0; flex:none;
}
.foot__meta{ margin:0; font-size:14px; }
.foot__meta a{ color: var(--muted-on-dark); text-decoration:none; border-bottom:1px solid rgba(181,175,163,.4); }
.foot__meta a:hover{ color: var(--white); border-bottom-color: var(--white); }
/* --gray fails AA on charcoal-2 (2.37:1). Footer legal uses a lighter warm tone. */
.foot__legal{ margin:0; font-size:13px; color:#A09889; width:100%; }
@media (min-width:900px){ .foot__legal{ width:auto; margin-left:auto; } }

/* ==========================================================================
   INTERIOR PAGE HERO
   Smaller than the home hero; no motif, so the page title leads.
   ========================================================================== */
.hero--page .hero__inner{ padding-block:44px 48px; }
@media (min-width:900px){ .hero--page .hero__inner{ padding-block:72px 78px; } }
.hero--page h1{
  font-size: clamp(1.9rem, 7.5vw, 2.4rem);
  margin-top:18px;
}
@media (min-width:900px){ .hero--page h1{ font-size:3.1rem; } }
.hero--page h1 span{ display:inline; }

/* ==========================================================================
   CAPABILITIES — native disclosure, no JavaScript
   ========================================================================== */
.scope{ border:1px solid var(--line); margin-top:34px; }
.scope details{ border-bottom:1px solid var(--line); background: var(--white); }
.scope details:last-child{ border-bottom:0; }
.scope details[open]{ background: var(--stone); }

.scope summary{
  cursor:pointer; list-style:none;
  padding:20px 22px; display:flex; align-items:baseline; gap:14px;
}
.scope summary::-webkit-details-marker{ display:none; }
.scope summary:hover{ background: var(--stone); }
.scope summary h3{
  font-family: var(--display); font-size:19px; font-weight:700;
  color: var(--charcoal); margin:0; flex:1; line-height:1.3;
}
.scope .sign{
  flex:none; width:14px; height:14px; position:relative; align-self:center;
}
.scope .sign::before,
.scope .sign::after{
  content:""; position:absolute; background: var(--charcoal);
  left:0; top:6px; width:14px; height:2px;
}
.scope .sign::after{ transform:rotate(90deg); transition:transform .2s ease; }
.scope details[open] .sign::after{ transform:rotate(0deg); }

.scope__body{ padding:0 22px 24px; }
.scope__body ul{ margin:0; padding:0; list-style:none; max-width:70ch; }
.scope__body li{
  position:relative; padding:8px 0 8px 20px; font-size:16px; color: var(--body);
  border-top:1px solid var(--line);
}
.scope__body li:first-child{ border-top:0; }
.scope__body li::before{
  content:""; position:absolute; left:0; top:18px;
  width:9px; height:1px; background: var(--charcoal);   /* markers are charcoal, never gold */
}

/* ==========================================================================
   PROJECTS
   ========================================================================== */
.case{ border-top:1px solid var(--line); padding-top:34px; margin-top:34px; }
.case:first-of-type{ border-top:0; margin-top:30px; padding-top:0; }

.case__head{ max-width:70ch; }
.case h3{
  font-family: var(--display); font-size:24px; font-weight:700;
  color: var(--charcoal); margin:10px 0 6px; line-height:1.25;
}
@media (min-width:900px){ .case h3{ font-size:30px; } }
.case__where{ margin:0 0 18px; color: var(--gray); font-size:15px; }

.photo-slot{
  background: var(--stone); border:1px dashed var(--line);
  aspect-ratio:16/9; display:flex; align-items:center; justify-content:center;
  text-align:center; padding:24px; margin:22px 0 26px;
}
.photo-slot p{
  margin:0; max-width:38ch; font-size:14px; color: var(--gray);
}
.photo-slot strong{
  display:block; font-size:11px; font-weight:700; letter-spacing:.16em;
  text-transform:uppercase; color: var(--gold-ink); margin-bottom:8px;
}

.cap{ display:grid; gap:26px; }
@media (min-width:820px){ .cap{ grid-template-columns:repeat(3,1fr); gap:34px; } }
.cap h4{
  font-size:11px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color: var(--gold-ink); margin:0 0 10px;
}
.cap p{ margin:0; font-size:16px; line-height:1.6; }
.cap > div{ border-top:1px solid var(--line); padding-top:16px; }

.status{
  display:inline-block; font-size:11px; font-weight:700; letter-spacing:.16em;
  text-transform:uppercase; color: var(--charcoal);
  border:1px solid var(--line); background: var(--stone); padding:5px 11px;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.bio{ display:grid; gap:34px; margin-top:32px; }
@media (min-width:900px){ .bio{ grid-template-columns:1.4fr 1fr; gap:60px; } }
.bio p{ max-width:66ch; }
.bio__aside{
  background: var(--stone); border:1px solid var(--line); padding:24px;
  align-self:start;
}
.bio__aside h3{
  font-size:11px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color: var(--gold-ink); margin:0 0 14px;
}
.bio__aside ul{ margin:0; padding:0; list-style:none; }
.bio__aside li{
  padding:9px 0; border-top:1px solid var(--line); font-size:15px; color: var(--charcoal);
}
.bio__aside li:first-child{ border-top:0; }

.reasons{ display:grid; gap:1px; background: var(--line); border:1px solid var(--line); margin-top:34px; }
@media (min-width:700px){ .reasons{ grid-template-columns:repeat(2,1fr); } }
.reason{ background: var(--white); padding:24px 22px; }
.reason h3{
  font-family: var(--display); font-size:19px; font-weight:700;
  color: var(--charcoal); margin:0 0 8px; line-height:1.3;
}
.reason p{ margin:0; font-size:16px; color: var(--body); }

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.form-grid{ display:grid; gap:34px; margin-top:32px; }
@media (min-width:900px){ .form-grid{ grid-template-columns:1.25fr .75fr; gap:56px; align-items:start; } }

.field{ margin-bottom:20px; }
.field label{
  display:block; font-size:12px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color: var(--charcoal); margin-bottom:7px;
}
.field .opt{ color: var(--gray); font-weight:600; letter-spacing:.06em; text-transform:none; }
.field input,
.field textarea{
  width:100%; font-family: var(--ui); font-size:17px; color: var(--body);
  background: var(--white); border:1px solid var(--line);
  padding:12px 14px; border-radius:0;
}
.field textarea{ min-height:130px; resize:vertical; }
.field input:focus,
.field textarea:focus{ border-color: var(--charcoal); outline:2px solid var(--gold-ink); outline-offset:1px; }

.form-row{ display:grid; gap:0; }
@media (min-width:640px){ .form-row{ grid-template-columns:1fr 1fr; gap:0 20px; } }

.hp{ position:absolute; left:-9999px; }

.btn-submit{
  font-family: var(--display); font-weight:700; font-size:18px;
  background: var(--gold); color: var(--charcoal);
  border:1px solid var(--gold); padding:16px 32px; cursor:pointer;
  transition: background .18s ease, border-color .18s ease;
}
.btn-submit:hover{ background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }

.form-note{ font-size:14px; color: var(--gray); margin:16px 0 0; max-width:52ch; }

.contact-aside{ border-left:3px solid var(--gold); padding-left:22px; }
.contact-aside dt{
  font-size:11px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color: var(--gold-ink); margin:0 0 4px;
}
.contact-aside dd{ margin:0 0 20px; }
.contact-aside dd:last-child{ margin-bottom:0; }
.contact-aside a{
  font-family: var(--display); font-size:20px; color: var(--charcoal);
  text-decoration:none; border-bottom:1px solid var(--line); word-break:break-word;
}
.contact-aside a:hover{ border-bottom-color: var(--charcoal); }
.contact-aside .plain{ font-family: var(--display); font-size:18px; color: var(--charcoal); }
.contact-aside small{ display:block; font-size:14px; color: var(--gray); margin-top:6px; }

/* ==========================================================================
   CHIP LIST — for item counts that don't divide evenly into the column count.
   The .markets gap-as-border technique leaves visible empty cells on a ragged
   last row; bordered tiles are immune to the count.
   ========================================================================== */
.chips{
  margin:30px 0 0; padding:0; list-style:none;
  display:grid; gap:10px;
  grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
}
.chips li{
  background: var(--charcoal-2);
  border:1px solid rgba(216,210,196,.22);
  padding:15px 17px;
  color: var(--white); font-size:15px; font-weight:600; letter-spacing:.02em;
}

/* ==========================================================================
   CLIENT BAND
   Named clients given real weight. Deliberately typographic, not a logo strip:
   one logo alone reads thin, and the brief rules out logo soup.
   ========================================================================== */
.client{
  background: var(--stone); border:1px solid var(--line);
  border-left:3px solid var(--gold);          /* gold moment: the client rule */
  padding:22px 24px; margin-bottom:16px;
}
.client:last-child{ margin-bottom:0; }
.client--quiet{ border-left-color: var(--line); background: var(--white); }

.client__name{
  font-family: var(--display); font-weight:700;
  font-size:26px; line-height:1.2; color: var(--charcoal);
  margin:8px 0 0;
}
@media (min-width:900px){ .client__name{ font-size:30px; } }
.client--quiet .client__name{ font-size:21px; }
@media (min-width:900px){ .client--quiet .client__name{ font-size:23px; } }

.client__where{
  margin:8px 0 0; font-size:16px; color: var(--charcoal);
}
.client__scope{
  margin:10px 0 0; font-size:15px; color: var(--gray); line-height:1.55;
  max-width:44ch;
}
.client__note{
  margin:18px 0 0; font-size:14px; color: var(--gray); max-width:44ch;
}
